0

私のバックボーンモデルでは、次のようなものがあります

.......

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

4

0 に答える 0