我有这个获取请求,我的问题是,有时它会返回204但有时会返回200.我已经尝试使用邮递员创建手动请求,它总是返回200.可能是什么问题?
export const requestJobRequests = (searchInput) => {
return (dispatch, getState) => {
dispatch({ type: GET_JOBREQUESTS, payload: null });
return fetch(`/api/JobRequest/GetJobRequests`, {
method: "POST",
credentials: 'same-origin',
body: JSON.stringify(searchInput),
headers: getCookies()
})
.then(response => checkIfAuthorizeRequest(response))
.then((data) => {
});
};
};