我目前正在努力将 fetch get 请求转换为 axios get 请求。这是我的提取请求:window.fetch(url, { headers: { 'Origin': window.location.origin, }, method: 'GET', mode: 'cors', cache: 'no-cache', credentials: 'same-origin',})我正在尝试将其转换为 axios,但正在努力为缓存和凭据找到相应的属性。任何人有任何想法?
1 回答
素胚勾勒不出你
TA贡献1827条经验 获得超9个赞
缓存:
const config = {
headers: {
'Content-Type': 'application/json',
'Cache-Control': 'no-cache'
}
};
const { data } = await axios.get(url, config);
对于凭据,请检查属性withCredentials。默认情况下,它设置为 false。
添加回答
举报
0/150
提交
取消