关于axios的小知识

发请求1

axios({
    method: 'GET',    //请求类型
    url:'路径',    //设置请求路径
    data:{    //设置请求体
        title: "afafa"
        author: "afafa"
    }
}).then(response => {
    console.log(response);
})

发请求2

axios.request({
    method: 'GET',
    url: '路径'
}).then(response => {
    console.log(response);
})

发请求3

axios.post("路径" , {
    "body": "afa"    //发送请求体
    "postId": 2
}).then(response => {
    console.log(response);
})

axios创建实例对象发送请求

const abc = axios.create({
    baseURL: '路径',
    timeout: 2000
})

配置axios默认配置

axios.defaults.method = 'GET';
axios.defaults.baseURL = '路径'
axios.defaults.params = {id: 100};
axios.defaults.timeout = 3000;

在发送请求时需要在请求头中添加 Authorization 字段携带 tokentoken 的值为 2b58f9a8-7d73-4a9c-b8a2-9f05d6e8e3c7

let t = axios.create({
        headers: {
            Authorization : `2b58f9a8-7d73-4a9c-b8a2-9f05d6e8e3c7`
        }
    })

原生JS发请求

var xhr = new XMLHttpRequest(); //创建发送请求的对象
                    xhr.onreadystatechange = await function(){
                        if(xhr.readyState === 4){
                            console.log("服务器的响应结果已经全部收到")
                            const obj = JSON.parse(xhr.responseText);
                            console.log(obj)
                        }
                    }
                    xhr.open("GET" , MockURL);
                    xhr.send(null); 
async function fetchData() {
                    try {
                        const response = await fetch(MockURL);
                        if (!response.ok) {
                            throw new Error('Request failed');
                        }
                        const data = await response.json();
                        console.log(data);
                    } catch (error) {
                        console.error(error);
                    }
                }

简易版

async function fetchData() {
  try {
      const data = await (await fetch("js/carlist.json")).json();
      console.log(data);
  } catch {}
}

发送多个并发请求

function getUserAccount() {
  return axios.get('/user/12345');
}

function getUserPermissions() {
  return axios.get('/user/12345/permissions');
}

const [acct, perm] = await Promise.all([getUserAccount(), getUserPermissions()]);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

博丽七七

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值