是谁传给了constructor参数


class StockList extends Component {
  constructor(...args) {
    super(...args);

    this.state = {
      stockList: [],
      showStockList: false,
      showFluctuation :args[0].showFluctuation || false, //是不是显现涨跌额那一列
      sortedHeader:args[0].sortedHeader && true, //是不是显现涨跌额那一列
    };
  }
}

以上代码是es6建立组件的体式格局,该段代码建立了StockList组件,在StockList实例化的时刻,以下所示:

<StockList theme="white" showFluctuation stockList={list} isEmptyList={false} />

constructor中的参数args含有这些属性,也就是

args[0] = {
    theme: "white",
    showFluctuation,
    stockList,
    isEmptyList
   }
    原文作者:wscops
    原文地址: https://segmentfault.com/a/1190000010242576
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞