Put Jade local variable in tag attribute

对着背影说爱祢 提交于 2019-11-27 12:50:08

问题


I want to put Jade variable in tag attribute but it isn't evaluated.

a(href="/logout/#{user.name}")


回答1:


You could use:

a(href='/logout/'+user.name)


来源:https://stackoverflow.com/questions/5081534/put-jade-local-variable-in-tag-attribute

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!