如何使用mustache.js获取外部JSON密钥或值的索引

时间:2017-10-31 20:14:13

标签: javascript arrays json indexing mustache

我正在循环使用这个元素:

{{#video}}
<li id="video{{type}}" onclick="FWDRL.show(\'{{lbid}}colTV\', {{index}});" data-url="{{url}}" data-poster-path="{{cover}}" data-thumbnail-path="{{cover}}" data-width="800" data-height="450"><h4><i class="fa fa-play-circle-o"></i> {{type}}</h4><p class="description"></p></li>
{{/video}}

这会抓取我外部JSON文件中的每个视频实例。但是,我需要在{{index}}标记中添加这些元素的索引值。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

一个是,您需要在JSON对象中定义属性index

var counter = 1;
obj['index'] = function(){
    return counter++;
}