React js onClick无法将值传递给方法
我想阅读onClick事件值属性。但是当我单击它时,在控制台上会看到类似以下的内容: SyntheticMouseEvent {dispatchConfig: Object, dispatchMarker: ".1.1.0.2.0.0:1", nativeEvent: MouseEvent, type: "click", target 我的代码正常工作。运行时,我可以{column}在onClick事件中看到但无法获取它。 我的代码: var HeaderRows = React.createClass({ handleSort: function(value) { console.log(value); }, render: function () { var that = this; return( <tr> {this.props.defaultColumns.map(function (column) { return ( <th value={column} onClick={that.handleSort} >{column}</th> ); })} {this.props.externalColumns.map(function (column) { // Multi dimension array …