美文网首页
react 父组件向传子传参

react 父组件向传子传参

作者: daoqing99 | 来源:发表于2018-07-13 11:36 被阅读0次

父组件

constructor(props) {
        super(props);
        this.state={
            bgColor:'#004531'
        }
    }

<Footer bgColor={this.state.bgColor} />

子组件

可省略
constructor(props) {
super(props);
this.state={
bgColor:this.props.bgColor
} }


<div className="footerBgColor" style={{backgroundColor:this.props.bgColor,borderTop:this.props.borderNone}}>

相关文章

网友评论

      本文标题:react 父组件向传子传参

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