一、父传子
1.将子组件引入父组件中 并在需要的位置嵌入
例如
import User from '../user';
jsx: <User />
-
在嵌入的组件上绑定自定义属性
例如:
<User yh="1512A" msg="今天真热啊" />
子组件如何接收 (this.props)
例如:<div>
用户组件内容---{ this.props.yh }---{this.props.msg}
</div>
react生命周期钩子componentWillMount:组件首次渲染之前调用
componentDidMount:在首次真实的DOM渲染后调用(仅此一次)或请求外部接口数据时使用
componentWillUnmount:组件卸载后
网友评论