我想从Axios中获取一些数据,以使其返回旧值,而不是新值。该数据是一篇包含一些说明和注释数组的文章,但是添加注释后,我可以通过邮递员或浏览器获取它,并且给出新的结果,但是在我的react应用程序中,它返回一个空的注释数组,我尝试使用缓存头后没有呈现旧的值,因此无法继续获取我的函数
export const getOneDoneArticle = id => dispatch => {
axios
.get(`/doneArticles/${id}`)
.then(res => {
dispatch({
type: GET_DONE_ARTICLE,
payload: res.data
});
console.log(res.data);
})
.catch(err =>
dispatch({
type: GET_ERRORS,
payload: err
})
);
};