我正在尝试使用反复js入门的复数教程。 本教程的要点是单击按钮会导致按钮的值递增。我按照教程中的人的确切代码,但我无法弄清楚为什么按钮不会增加。这是link to the plunk for this tutorial.
我的猜测是,我的
可能有问题handleClick: function(){
this.setState({ counter: this.state.counter+1 });
},
功能
答案 0 :(得分:2)
你的
onclick
应该是
onClick
代替。
改变它,它应该工作。
另外,您可能想要使用
ReactDOM.render
而不是
React.render
请参阅此https://facebook.github.io/react/tips/props-in-getInitialState-as-anti-pattern.html