在Jade模板中的注释中打印表达式值

时间:2015-10-10 05:24:03

标签: javascript node.js express pug

需要在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 -->

所有帮助表示赞赏!

1 个答案:

答案 0 :(得分:2)

也许这种方式对你有好处:

!='<!-- COMMENT VARAIBLE: ' + variable + '-->'