react.js 点击事件传递参数的方法

<button onClick={this.handleClick.bind(this, props0, props1, ...}></button>

handleClick(porps0, props1, ..., event) {
    // your code here
}

原文地址:https://www.cnblogs.com/fayin/p/7346351.html