我正在使用underscore
jade
。我的构建过程将jade templates
转换为html
,然后从html
转换为underscore
到一个JST
文件。一切都很好。但是有一个问题。
//Build process using Gulp
Gulp
¬ jade
¬ html
¬ jst template -> template.js
这很好用,但我在使用jade时很难使用if语句:
option(value!='<%= me.value %>', <% if(me.checked === true){ print("selected='selected'"); }%>)
我可以看到它显然无法正常工作,但我仍然坚持如何使其发挥作用。