在react.js中,将超时引用存储为实例变量(this.timeout)或状态变量(this.state.timeout)更好吗?
React.createClass({
handleEnter: function () {
// Open a new one after a delay
var self = this;
this.timeout = setTimeout(function () {
self.openWidget();
}, DELAY);
},
handleLeave: function () {
// Clear the timeout for opening the widget
clearTimeout(this.timeout);
}
...
})
要么
React.createClass({
handleEnter: function () {
// Open a new one after a delay
var self = this;
this.state.timeout = setTimeout(function () {
self.openWidget();
}, DELAY);
},
handleLeave: function () {
// Clear the timeout for opening the widget
clearTimeout(this.state.timeout);
}
...
})
这两种方法都有效。我只是想知道一个使用另一个的原因。
除了@ssorallen所说的以外,您还应该记住在调用handleLeave之前处理要卸载的组件。