组件间发通知可以使用
observer.pub,其他组件在
componentDidMount中
observer.sub。在新的react中已经不再使用ref,取而代之的
onRef={
(node) => this.xxx = node
}然后使用
this.xxx调用方法。组件间共享数据可以使用redux
react小记
原文:https://www.cnblogs.com/sunala/p/12576505.html