본문 바로가기

NodeJS/pug

pug alert 안될때

pug alert 안될 때 예제입니다. 까먹을 까봐~ 블로그에 적어둡니다!

 

요런식으로 인라인으로 테스트 할 일이 생겨서 썼더니, 안먹혔습니다. 

div(class="container")
  div(class="row")
  - alert('test');

이렇게 저렇게 구글링해서 찾았더니 script. 을 사용하면 누구는 된다고 했지만 저는 안되었습니다.

결과적으로 | 이것을 활용해서~ 되었어요!!

div(class="container")
  div(class="row")
    script
      | alert('test');

 

 

참고 했던 링크 : 

qastack.kr/programming/5858218/how-can-i-render-inline-javascript-with-jade-pug

 

Jade / Pug로 인라인 JavaScript를 렌더링하려면 어떻게해야합니까?

 

qastack.kr

pug 공식문서 : 

pugjs.org/language/plain-text.html

 

Plain Text – Pug

Plain Text Pug provides four ways of getting plain text — that is, any code or text content that should go, mostly unprocessed, directly into the rendered HTML. They are useful in different situations. Plain text does still use tag and string interpolati

pugjs.org

pug를 사용하면 확실히 html 생으로 쓸 때보다 코드수가 팍 줄어들긴합니다. 그런데 가끔~ 이렇게 잘 모를 때 는 찾다가 시간이 다~ 가버리는구만요... 다음번에는 이런일이 없도록 블로그에 차곡차곡 써둡니다~!! 

728x90
300x250