猿问

将 fetch get 转换为 axios 方法

我目前正在努力将 fetch get 请求转换为 axios get 请求。


这是我的提取请求:


window.fetch(url, {

    headers: {

        'Origin': window.location.origin,

    },

    method: 'GET',

    mode: 'cors',

    cache: 'no-cache',

    credentials: 'same-origin',

})

我正在尝试将其转换为 axios,但正在努力为缓存和凭据找到相应的属性。任何人有任何想法?


波斯汪
浏览 191回答 1
1回答

素胚勾勒不出你

缓存:const config = { headers: {  'Content-Type': 'application/json',  'Cache-Control': 'no-cache' }};const { data } = await axios.get(url, config);对于凭据,请检查属性withCredentials。默认情况下,它设置为 false。
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答