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;
}
如上源码:注释处的疑问,希望各位热衷于源码解读的给下回复
后来自己写了篇博客,也算是搞明白了一部分;我真是自问自答啊,尴尬
https://segmentfault.com/a/11...