バックボーンを使って練習するための時計をほとんど使っていませんが、止めることができません。現在の間隔のIDを返して止めようとしていますが、機能しません。私が間違っているのは何ですか?
var app = {
lap: Backbone.Model.extend({
defaults: {
time: 0
}
}),
views: {
home: Backbone.View.extend({
el: $('#the-clock'),
tagName: 'div',
events: {
"click #save-lap" : "stopWatch"
},
render: function(){
var time = this.theWatch(),
tpl = '<button id="save-lap"></button><span id="clock">Son las <%= time %></span>';
$(this.el).html( _.template(tpl,time));
},
theWatch: function(){
var currentTime = new Date(),
currentHour = currentTime.getHours(),
currentMinutes = currentTime.getMinutes(),
currentSeconds = currentTime.getSeconds(),
timeOfDay = (currentHour < 12) ? "AM":"PM";
return data = {
time: currentHour + ':' + currentMinutes + ':' + currentSeconds + ' ' + timeOfDay
}
},
updateWatch: function(){
return setInterval(
function(){
this.render();
}.bind(this),
1000
)
},
stopWatch: function(){
console.log('stop')
var clock = this.updateWatch();
clearInterval(clock);
},
initialize: function(){
this.render();
this.updateWatch();
}
})
},
ini: function(){
var Home = new this.views.home();
}
};
(function(){
app.ini();
})();
ありがとう!