在我的骨干模型中,我有类似
的东西.......
initialize: function() {
this.on('change', function() {
console.log('Values changed');
});
},
defaults: {
pagelocation: "foo",
},
setPageLocation: function(newLocation) {
this.set({pagelocation: newLocation});
}
................
在我看来,我有
showDashBoard: function() {
this.breadCrumbsModel.setPageLocation('quax');
},
......................
出于某些原因,当我查看我的模型时,我仍然得到值foo
,尽管我将其更改为quax