react父组件传入子组件的props不更新问题
export default class Index extends Component { // 接受新props更新,注意设置的参数是nextProps componentWillReceiveProps(nextProps) { this.setState({ isShow: nextProps.isShow }); } constructor() { super(...arguments) this.state = { isShow: false, } } render() { const { isShow } = this.state; return ( <View className={isShow ? "show" : "hide"}> </View> ) } }
博 主 :夏秋初
地 址 :https://www.cnblogs.com/xiaqiuchu/p/14720012.html
如果对你有帮助,可以点一下 推荐 或者 关注 吗?会让我的分享变得更有动力~
转载时请带上原文链接,谢谢。
地 址 :https://www.cnblogs.com/xiaqiuchu/p/14720012.html
如果对你有帮助,可以点一下 推荐 或者 关注 吗?会让我的分享变得更有动力~
转载时请带上原文链接,谢谢。