我在父组件里面点击多次,为什么子组件只会触发一次componentWillMount,之后就再也没触发了,按理来说我click一次就会重新setState一次,完后子组件生命周期会重新开始重置的吧如果我想子组件的componentWillMount每次都会触发,这个该怎么实现呢//父组件index.jsclick=()=>this.setState({bool:true});//默认falserender(){return(click{this.state.bool?:''})}//子组件Test.jscomponentWillMount(){console.log('...componentWillMount...')}render(){return...Test...}
添加回答
举报
0/150
提交
取消