我在我的jade文件中有这行,我想设置值#{target}但是当它呈现这是非法时我收到错误
input(type='hidden' name='target' value=#{target})
答案 0 :(得分:6)
我相信这应该是:
// note the double qoutes around `#{}`
input(type="hidden" name="target" value="#{target}")
答案 1 :(得分:0)
我刚尝试了这个,你无法使用插值,它对我来说就像这样:
input(type="hidden" name="upload" id="upload" value=upload._id)
答案 2 :(得分:0)
删除#{}
。应该是value=target
。