需要在Jade模板注释中打印参数的值。该值正确传入;以下按预期工作:
if type !== "surveyFree"
ul.pollOptions
for answer, idx in answers
li
+printAnswer(answer, idx)
else
textarea(cols="50", rows="4", placeholder="Type in your answer")
但是,所有在注释中打印出type
变量值的尝试都失败了。我尝试过以下表格:
// "type = " + type
// #{"type = " + type}
// span= #{"type = " + type}
// span= type = #{type}
和许多其他人,但没有任何作用(一切都打印完全按我输入)。我喜欢输出:
<!-- type = challenge -->
或
<!-- type = survey -->
所有帮助表示赞赏!
答案 0 :(得分:2)
也许这种方式对你有好处:
!='<!-- COMMENT VARAIBLE: ' + variable + '-->'