ibms-MCUT/ibms_react/src/utils/ajaxRes.js
2023-01-31 23:15:50 +08:00

10 lines
267 B
JavaScript

export function ajaxRes(res, thunkAPI) {
const { code = 9999, msg, data = null } = res;
const { fulfillWithValue, rejectWithValue } = thunkAPI;
if (code !== "0000" || !data) {
return rejectWithValue(msg);
} else {
return fulfillWithValue(data);
}
}