我想跳过arg
createAsynchThunk 的第一个参数,只访问extra
参数以访问我作为额外参数发送的 api 服务,有没有办法可以跳过arg
参数而不使用_
,undefined
或类似的东西?
createAsyncThunk(
'module/fetchModule',
async (undefined, { extra: api }) => {
const { data } = await api.get('myendpoint');
const normalized = normalize(data, [myEntity]);
return normalized.entities;
}
);