我正在使用'redial'npm软件包,react-router,并且我正在使用修饰的组件@provideHooks来访存。
@provideHooks({
fetch: ({ dispatch, params }) => Promise.all([
dispatch(//somethingHere),
dispatch(//somethingHere),
]),
defer: ({ dispatch, params }) => Promise.all([
dispatch(//somethingHere),
dispatch(//somethingHere),
]),
})
fetch and defer可以正常工作,但是如果刷新页面,则只有defer可以工作,而fetch不能。您能提出一些解决方案吗?