收到错误消息:“操作必须是普通对象。对异步操作使用自定义中间件。”

时间:2018-12-18 10:34:52

标签: react-redux redux-thunk redux-saga

我正在尝试通过redux saga调度一些操作,但会出错

function fetchCreationsRequest (requestPayload) {
    debugger
    return {
        type: FETCH_CREATIONS_LOADING,
        requestPayload
    }
}

export function fetchCreations (requestPayload = {}) {
    debugger
    return (dispatch) => {
        dispatch(fetchCreationsRequest(requestPayload))
    }
}

“ fetchCreations”函数执行完美,但是当“ fetchCreationsRequest”动作调度时,出现此错误 “动作必须是普通对象。对异步动作使用自定义中间件。” 有什么建议吗?

0 个答案:

没有答案