본문 바로가기

NodeJS

pug images url #{url} 이미지 경로를 변수로 넣었을 때, 에러남. 해결 방법

문제 : 

db에서 가져오는 이미지 경로를 넣어주고 싶은데.. 이렇게 쓰니까 계속 에러가 남...

img.image(src='#{photo}')

 

해결방법 : 

이렇게 해결... ㄷㄷㄷ

  img.image(src='/'+ photo)

https://pugjs.org/language/attributes.html#attribute-interpolation

 

 

Attributes – Pug

Attributes Tag attributes look similar to HTML (with optional commas), but their values are just regular JavaScript. (NOTE: Examples on this page use the pipe character (|) for whitespace control.) a(href='google.com') Google | | a(class='button' href='goo

pugjs.org

attribute interpolation

 

 

728x90
300x250