我想在我现有的主干模型中添加一些 JSON。实现这一目标的最佳方法是什么?
我试过以下:
nextClick: function(event) {
//this.getPostData returns some JSON that I want to add in existing model
this.model = new Backbone.Model.extend( this.getPostData() );
}
它不起作用,this.model
在控制台中给我以下输出:
console.log(this.model);
//output: function (){ parent.apply(this, arguments); }