带有Jade的主干与标签参数有关

时间:2016-02-20 11:10:12

标签: backbone.js pug

非常烦人的问题我正面临着。我想用骨干动态输入图像的url。我以为会有以下情况。

img(src="<%= image %>" width="100%" height="auto")

然而,src网址未被正确替换并保持为&#34;&lt;%= image%&gt;&#34;当我这样做时:

this.$el.html(this.template(this.model.toJSON()));

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

你可以像这样写,并且jade语法完整。这样可以直接引用下划线变量。

  img(src!="<%= image %>" width="100%" height="auto")