react 父组件向传子传参
2018-07-13 本文已影响0人
daoqing99
父组件
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}}>