我有一系列链接需要在html中呈现到href
中。这就是我所拥有的,我正在使用{{#each shipUrl}}
:
shipUrl:{["http:urlone.com","http:urltwo.com"]}
现在,如果我使用它:
<div>{{shipUrl}}</div>
它会在页面上对此进行评估
[http:urlone.com]
[http:urltwo.com]
但如果我把它放在href
<div href="{{shipUrl}}">Click</div>
这会呈现给[http:urlone.com]
...
将此对象的索引转换为href
的正确方法是什么?
答案 0 :(得分:0)
答案是使用{{this}}
在HTML中
<div href="{{this}}">Click</div>