如何在需要这些双引号的位置插入包含双引号的流星模板?

时间:2016-05-08 11:28:15

标签: javascript html css meteor

在我的流星网络应用程序中,我试图使用此代码有条件地更改某个元素的背景:

.popular-games{
  background-image: url({{background}});
}

{{background}}是查找图片时应遵循的路径。这不会起作用,因为url路径需要引号,当我在引号{{background}}中加入引号时。我已尝试使用此代码将引号放入{{background}}来源:

background: "\"images/gameArt/fallout4.jpg\""

尝试添加引号,但由于某种原因,这仍然不起作用。任何帮助都会很棒。

1 个答案:

答案 0 :(得分:0)

You need to have the style in your html like this:

<div style="background-image: url('{{imagePath}}');"></div>

If the file path you return is correct, it will work.