props属性:
- props对于模块来说属性外来属性
- 传递参数:<BodyIndex userid={11} username={'小红'}/>
- 模块中接受参数:this.props.username
parent:
<BodyIndex userid={11} username={'小红'}/>
child:
<p>{this.props.userid} -- {this.props.username}</p> {/*调用*/}
parent:
<BodyIndex userid={11} username={'小红'}/>
child:
<p>{this.props.userid} -- {this.props.username}</p> {/*调用*/}
本文标题:react--props
本文链接:https://www.haomeiwen.com/subject/lvzroxtx.html
网友评论