iframe嵌入变量作为prc中的src无法正常工作

时间:2016-11-30 19:26:46

标签: node.js express pug ejs

这是与ejs合作的代码:

<iframe width="660" height="371" src="<%= revive.reviveVideo %>"></iframe>

哈巴狗相当于什么?试过这个,但它不起作用:

iframe(width='660', height='371', src='#{revive.reviveVideo}')

如果我将变量更改为实际路径,它就可以正常工作......这是变量语法的一个问题...

1 个答案:

答案 0 :(得分:6)

好的我终于找到了它:

iframe(width='660', height='371', src=revive.reviveVideo)

是pug的正确新语法