美文网首页
关于react的componentDidMount,compon

关于react的componentDidMount,compon

作者: 悦者生存 | 来源:发表于2017-06-27 17:04 被阅读93次

1.比如弹出一个模态框,模态框中包括componentDidMount,componentWillReceiveProps,render,第一次打开模态框会执行componentDidMount,后面就再也不会执行了,render是只要有一个props就会执行执行,会执行很多次,而componentWillReceiveProps是只要某个状态改变才会执行(可以控制成某个状态改变的时候才会执行),

所以要想每次打开模态框都执行一次某个东西,就用componentWillReceiveProps(控制模态框打开的状态)

2.如果想要nextProps和this.props相同的时候也会改变,那么就用eventProxy

相关文章

网友评论

      本文标题:关于react的componentDidMount,compon

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