发货来自商店,因此您只需要对商店进行全球参考.
原文链接:https://www.f2er.com/react/300801.html因此,假设您的应用程序root看起来像这样:
const store = createStore(rootReducer); ReactDOM.render(<Provider store={store} /> ...);
只需导出该商店:
export const store = createStore(root);
并从您的静态util导入商店:
import {store} from "../path/to/app/root"; store.dispatch({ ... });