我正在使用react-rails gem将react组件添加到我的rails应用程序中。 这是一个代码示例:
let b = <button type="button" onClick={this.onClick} id="678">Click me</button>; const element = React.createElement( 'button', { type: 'button', onClick: this.onClick }, 'Hello, world!' );
onClick事件操作未附加到按钮,这是我记录按钮对象时的道具:
道具:孩子:“点击我” ID:“ 678”类型:“按钮”