我正在尝试通过redux saga调度一些操作,但会出错
function fetchCreationsRequest (requestPayload) {
debugger
return {
type: FETCH_CREATIONS_LOADING,
requestPayload
}
}
export function fetchCreations (requestPayload = {}) {
debugger
return (dispatch) => {
dispatch(fetchCreationsRequest(requestPayload))
}
}
“ fetchCreations”函数执行完美,但是当“ fetchCreationsRequest”动作调度时,出现此错误 “动作必须是普通对象。对异步动作使用自定义中间件。” 有什么建议吗?