我正在开发一个使用React js和node js作为后端的应用程序。 这是我的代码:
我正在使用上面的代码,任何事件,如onclick和表单提交都不起作用。请告诉我任何有关运行我的申请的参考或帮助。
Class App extends React.Component {
constructor(props) {
super(props);
this.state = {
data: 'Initial data...'
}
this.updateState = this.updateState.bind(this);
}
updateState() {
console.log('event is working');
}
render() {
return (
<div>
<button onClick={this.updateState}>CLICK</button>
</div>
);
}
}
export default App;