react Provider 源码疑惑

    

    Provider.prototype.getChildContext = function getChildContext() {
  var _ref;

  return _ref = {}, _ref[storeKey] = this[storeKey], _ref[subscriptionKey] = null, _ref;
};

function Provider(props, context) {
//这里的context ,哪里来的?我知道是上面getChildContext的返回值,我想知道源码中是如何运作的,我觉得应该是react传递进来的,但是还没有找到源码
  _classCallCheck(this, Provider);

  var _this = _possibleConstructorReturn(this, _Component.call(this, props, context));

  _this[storeKey] = props.store;
  return _this;
}

如上源码:注释处的疑问,希望各位热衷于源码解读的给下回复

阅读 2.7k
1 个回答
推荐问题
宣传栏