我正在尝试在使用 mustache.js 构建的模板上呈现主干集合。问题是我无法在模板中获取模型的 cid。我的代码是
<div class="phone span4">
<h5> Phone Appointments</h5>
{{ _.each(slots, function(slot) { }}
{{ if(slot.aptType == "P"){ }}
<h6 cid="{{=slot.cid}}" aptId="{{=slot.aptId}}"> {{=slot.beginTime}} - {{=slot.endTime}} </h6>
{{ } }}
{{ }); }}
</div>
从上面的代码中,我可以得到 aptId、beginTime 和 end Time,但不能得到 Cid。如何在模板上渲染时从集合中获取模型的 Cid?
我从视图中的渲染方法看起来像这样
render:function(){
var template = _.template($("#slot-display-template").html());
compiledTmp = template({slots: this.collection.toJSON()})
this.$el.append(compiledTmp);
}
使用 cid 作为模型的唯一标识符还有什么缺点吗?
提前致谢 !!!