【发布时间】:2021-02-27 11:57:58
【问题描述】:
我的 React 应用初始化时(在 index.js 中)有几个请求
store.dispatch(pagesRequest());
store.dispatch(articlesRequest());
if (localStorage.ACCESS_TOKEN) {
store.dispatch(profileRequest());
store.dispatch(notificationsRequest());
}
我想显示一个全屏加载程序,直到所有加载程序都完成/出错。最好的处理方法是什么?
【问题讨论】:
标签: reactjs react-redux redux-saga