在注释中插入变量

时间:2017-10-17 15:22:49

标签: express pug

我试图在html注释中写入循环变量的值,但我只在注释中获得原始文本。

在模板中:

div This is a simple div
- for itervalue in names
    label
        //This is a html comment for item #{itervalue} sent to client
        input(type='radio', name='item_name', value=itervalue)
        span item : #{itervalue}
    br

评论行的结果:

<!--This is a html comment for item #{itervalue} sent to client-->

是否可以在jade / pug评论中插入字符串?

1 个答案:

答案 0 :(得分:1)

您需要使用HTML评论:

<!-- This is a html comment for item #{itervalue} sent to client -->