作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我用 React 编写了这个计时器组件,它可以在 es5 上运行,但由于某些原因它不能在 es6 上运行..
class Timer extends React.Component{
constructor() {
super();
this.state = {start: 15}
}
tick() {
this.setState ({start: this.state.start - 1});
}
componentDidMount() {
this.interval = setInterval(this.tick, 1000);
}
componentWillUnmount() {
clearInterval(this.interval);
}
render() {
return <h1> Time here: {this.state.start}</h1>
}
}
ReactDOM.render(<Timer />, document.getElementById('app'));
需要指出的是,我对 React 不太熟悉,仍在进一步提高自己。
最佳答案
您需要绑定(bind)勾选
constructor() {
super();
this.state = {start: 15}
this.tick = this.tick.bind(this)
}
关于javascript - React 组件不适用于 ES6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39319105/
我是一名优秀的程序员,十分优秀!