问题
Using Redux-Toolkit, I am trying to use ThunkAPI & dispatch inside an createAsyncThunk but I am getting rejected because of type error. Not sure how to resolve this.
my store:
export const store = configureStore({ 
    reducer: rootReducer, 
    middleware: [...getDefaultMiddleware()],
});
my Action:
export const tester = createAsyncThunk(
    'tester',
    async (testData, {dispatch}) => { 
        await dispatch(load(true));
        const final = await someExternalFunc(testData)
        return final;
    }
);
but, I am getting output as
Any help will be really appreciated.
回答1:
According to your comment, you are not calling the thunk right.
Calling test() returns an action, then you should dispatch the action:
const fetchTodo = createAsyncThunk("todo/fetchTodo", async (args, thunkAPI) => {
  console.log(thunkAPI, "thunkAPI");
  const response = await todoAPI();
  return JSON.stringify(response);
});
dispatch(test(testData));
来源:https://stackoverflow.com/questions/62778386/redux-toolkit-createasyncthunk-dispatch-is-showing-as-undefined