モデルが新規か既存かを問わず、テンプレートに特定の要素を表示したいと思います。
見せてみましたが{{ 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}}
どうすればテストできますか?