react传参

React里的事件参数传递和传统的JS参数有些不一样,需要通过bind方法来绑定参数,第一个参数指向this,第二个参数开始才是事件函数接收到的参数


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

例:

showDetail:function(url){
        window.open(url);
    },
    render:function(){
        var o = this;
        var list = this.props.date.map(function(c){
        return(
                
  • {c.txtSource}{c.title}

    {c.numPrice}
  • ); }); return(
      {list}
    ); }

    你可能感兴趣的:(react传参)