我正在学习骨干。我正在尝试使用事件进行更改。但是它在Uncaught TypeError: Object function (){ parent.apply(this, arguments); } has no method 'on'
上给了我这个错误line 6
。以下是我的代码
$(function () {
var ford = new Backbone.Model.extend({
type: 'car',
color: 'blue'
});
ford.on('change', function () {
console.log('something changed');
});
ford.set('type', 'truck');
});
我该如何做到这一点?