我试图在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评论中插入字符串?
答案 0 :(得分:1)
您需要使用HTML评论:
<!-- This is a html comment for item #{itervalue} sent to client -->