我试图通过React 库来理解 React ,但无法理解传递给 Component 的是什么context
和updater
是什么。
以下是库中的代码。
function Component(props, context, updater) {
this.props = props;
this.context = context;
this.refs = emptyObject;
// We initialize the default updater but the real one gets injected by the
// renderer.
this.updater = updater || ReactNoopUpdateQueue;
}
这些东西的目的是什么?