如果我的模型是新模型还是现有模型,我想在模板中显示特定元素。
我试图显示{{ id }}
,{{ cid }}
但{{ isNew }}
它们都是空的。
以下是示例:
// The Model
var MyModel = Backbone.Model.extend({});
// In the view
var model = new Contact();
this.$el.empty().append(this.template(model.toJSON()));
// The template :
{{#if isNew}}New model{{/if}}
我该如何测试?