好的,我尽量避免发布愚蠢的问题,但我无法弄清楚这个错误,如果这是微妙的,它可能会帮助其他人。
此代码有什么问题:
(function($){
var Item=Backbone.Model.extend({
defaults: {
ItemName:'Item ',
counter:0,
index:0,
allSetView:'',
Set: []
},
initialize: function(){
alert('youve created a new item');
}
});
var item=new Item();
alert(item.get({"index"}));//error thrown here
})(jQuery);
答案 0 :(得分:1)