美文网首页
react更新子组件的方法

react更新子组件的方法

作者: EasonChan94 | 来源:发表于2019-01-11 14:06 被阅读0次

    1.通过给子组件加不同的key

    <Son key = { Math.random() } />
    

    2.改变父组件给子组件的Props,然后子组件里面调用

    componentWillReceiveProps (currentPoprs, nextProps) {
        this.setState ( {  
            // update your state
        })
    }
    

    相关文章

      网友评论

          本文标题:react更新子组件的方法

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