高さを変更している間、高さを調整しています。また、変更イベントを要素にバインドしています。それでも、ここでコンソール出力を取得できません...
私はバックボーンに非常に慣れていません、誰かが私の間違いを訂正しますか?
var Person = Backbone.Model.extend({
initialize:function(){
var getHeight = prompt('provide your height');
this.set({height:getHeight}); //i am changing the height...
this.bind('change:height',function(){
console.log(this.get('height')); //i am not getting any console here...
})
},
defaults:{
name:'new Name',
height:'unknown'
}
});
var person = new Person();