react 子组件接收的父组件的数据怎么放到state中去
在构造函数和生命周期componentWillReceiveProps里面通过props设置state constructor(props) { this.setState(props); } componentWillReceiveProps(props) { this.setState(props); }
不建议在构造函数中使用setState。