reactjs – 检查是否已安装所有子组件

前端之家收集整理的这篇文章主要介绍了reactjs – 检查是否已安装所有子组件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法检测孩子是否已经安装?初始化同位素时,必须安装所有子组件以进行初始化.超时为5ms,它的工作方式与预期相符,但我确信有更好的方法.
componentDidMount: function() {
    var container = this.refs.vinesOverview.getDOMNode();

    setTimeout(function() {
      var isotope = new Isotope(container,{
        itemSelector: ".vine_item",layoutMode: "masonry",resizable: true,gutter: 0,isFitWidth: true
      });

      this.setState({ isotope: isotope });
    }.bind(this),5);
}

UPDATE

我现在试过这个:

componentDidMount: function() {
    var container = this.refs.vinesOverview.getDOMNode();
    console.log(container.offsetHeight); // console output 0
    setTimeout(function() {
        console.log(container.offsetHeight); // console output 3150
    },5);
  },

那么在5ms后它计算出了高度?这就是同位素不起作用的原因.这是一个Bug还是正常的?谢谢!

在父项上调用componentDidMount之前,React等待挂载所有子组件.如果你发现一个不成立的情况,请提交一个错误.
原文链接:https://www.f2er.com/react/300972.html

猜你在找的React相关文章