1
我有以下幾點:Backbone.js未在模型更改中發佈到服務器?爲什麼?
// MODEL
NotificationModel = C.BB.Model.extend({
defaults : {
read : false
},
urlRoot : '/notifications'
});
// COLLECTION
NotificationCollection = C.BB.Collection.extend({
model: NotificationModel,
url: '/notifications',
initialize : function() {
var me = this;
me.fetch();
}
});
視圖後來我:
....
onCollectionAdd : function(m,c,cfg) {
m.set({read: true},{silent: false});
設定正在發生變化的項目價值,但骨架沒有發佈更新到服務器。有什麼建議麼?由於