我正在努力理解this
ES6 类中的工作原理,这使得构建具有任何一致性的应用程序变得困难。这是我在 React 类中的困惑的一个例子:
class Class extends React.Component {
constructor() {
super();
this.state = {
timeout: 0
}
}
componentWillMount() {
// Register with Flux store.
// On change run this._storeUpdated()
}
_storeUpdated() {
if (this.state.timeout < 3) {
console.log(this.state.timeout); // 0
setTimeout(() => {
this.setState({
authorized: false,
timeout: this.state.timeout + 1 // undefined?
});
// Force Flux store to update - re-runs this method.
}, 1000)
}
}
}
为什么 this.state.timeoutundefined
在调用中setState()
?但是,如果我使用箭头函数该方法,那么它可以工作:
_storeUpdated = () => {
if (this.state.timeout < 3) {
console.log(this.state.timeout); // 0
setTimeout(() => {
this.setState({
authorized: false,
timeout: this.state.timeout + 1 // 1
});
// Force Flux store to update - re-runs this method.
}, 1000)
}
}
这里到底发生了什么?