오류 관련 해석 (5) 썸네일형 리스트형 클릭 event listener에서 preventDefault와 매개변수 전달 질문 (추천 1) 저는 버튼에서 submit 이벤트가 멈추지만, click으로 트리거되는 함수(function)에는 매개 변수(parameter)를 전달하기를 원합니다. 제가 생각하기에 동작할 것 같은 코드는 아래와 같습니다. function NL(line, event){ event.preventDefault(); document.getElementsByClassName('new-line')[1].innerHTML=line; } document.getElementsByClassName('new-line')[0].addEventListener('click', function(){NL('add new line');}); HTML은 아래와 같습니다. 1 New Line New 2nd Line 저는 HTML을 .. findOneAndDelete()와 findOneAndRemove()의 차이 질문 (추천 38) Mongoose 문서에서 findOneAndDelete()와 findOneAndRemove()를 구분할 수 없습니다. Query.prototype.findOneAndDelete() 이 함수는 findOneAndRemove() 명령이 MongoDB findAndModify() 명령이 된다는 점에서 Model.findOneAndRemove ()와 약간 다릅니다. 대부분의 mongoose 사용 사례에서 이 구별은 순전히 현학적입니다. 타당한 이유가 없다면 findOneAndDelete()를 사용해야 합니다. 더보기 I am not able to differentiate findOneAndDelete() And findOneAndRemove() in the mongoose documentai.. Jade(PUG) - 새로운 라인을 <br/>로 변환하고 내용을 인코딩한 채 유지하기 질문 (추천 10) 저는 여전히 Jade(PUG) 템플릿 엔진에 대해 익숙하지 않습니다. I am still not that familiar with the Jade template engine. \n처럼 새로운 라인을 br 태그로 변환하고 동시에 다른 컨텐츠를 인코딩할 수 있는 방법이 있나요? Is there a way to convert the new lines such as \n to br tags and at the same time keep the other content encoded? 예를 들면 For example .replace(/\n/g,'') 인코딩된 값에 적용되어 동작해야 합니다. applied over the encoded value should do the work. 하지만 그 .. Jade(PUG) HTML에서 br 태그 추가하는 방법 질문 (추천 10) br 태그를 추가해야 하는데 아래와 같이 입력 시 동작하지 않습니다. I need add br tag but this not working. table tbody td Juan Perez td 01 33 4455 6677 td Av José Vasconcelos 804-A Pte. br Col. Los Sabinos,CP. 66220, San Pedro, N.L. 댓글 1. 복사 : stackoverflow.com/questions/5433977/what-about-line-breaks-in-jade What about Line Breaks in Jade? I'm pretty sure that this is a no-brainer but I didn't find any snippet .. Pug code block이 예상치 못한 토큰 오류를 던지고 있습니다. 질문 저는 아래와 같은 mixin을 가지고 있습니다. I have the following mixin: mixin color(c, color) if (c == 0) div(class=`${color}-50`) red-50 else if (c == 5) div(class=`${color}`) red else div(class=`${color}-${c*100}`) red-#{c*100} 저는 그 후 아래 코드를 사용하여 mixin을 사용합니다. I then use the following code to use the mixin: block content .grid - var colors = ['red', 'pink', 'purple'] each color in colors .cell.cell-6 for (l.. 이전 1 다음