我想使用以下代码在下一个js中进行调度:
export const getServerSideProps = wrapper.getServerSideProps(async ({ store, req, res }) => {
store.dispatch(carsRequest('data'));
store.dispatch(END);
await store.sagaTask.toPromise();
});
Server Error
Error: Error serializing `.initialState.carReducer.cars` returned from `getServerSideProps` in "/cars".
Reason: `undefined` cannot be serialized as JSON. Please use `null` or omit this value all together.
为什么会出现此错误以及如何解决?