美文网首页
react--props

react--props

作者: 林ze宏 | 来源:发表于2018-01-15 14:43 被阅读0次

props属性:

  • props对于模块来说属性外来属性
  • 传递参数:<BodyIndex userid={11} username={'小红'}/>
  • 模块中接受参数:this.props.username
parent:
<BodyIndex userid={11} username={'小红'}/>

child:
<p>{this.props.userid} -- {this.props.username}</p> {/*调用*/}

相关文章

  • react--props

    props属性: props对于模块来说属性外来属性 传递参数: 模块中接受参数:this.props.username

网友评论

      本文标题:react--props

      本文链接:https://www.haomeiwen.com/subject/lvzroxtx.html