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 个回答
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏