其他分享
首页 > 其他分享> > 必背-6.axios和fetch用法

必背-6.axios和fetch用法

作者:互联网

文章目录

必背-6.axios和fetch用法

axios

1.axios是什么?

2.axios中GET系列的使用方法?

3.axios中POST系列的使用方法?

4.axios内部做的优化?

5.对象分为几大类?

6.axios做get请求时存在的三种错误情况?

7.axios的get和post请求另一种写法?

axios({
        method: 'get',
        url:'http://127.0.0.1:9999/user/list',
        params:{id:1},//重点,get方法中用params
        headers:{}
    }).then(res=>{
        console.log(res);
})

axios({
        method: 'post',
        url:'http://127.0.0.1:9999/user/list',
        data:{id:1},//重点,post方法中才能有data
        headers:{}
    }).then(res=>{
        console.log(res);
})

8.axios二次封装?

9.axios的请求、响应拦截器怎么使用?

Fetch

1.Fetch的使用?

2.axios和Fetch的区别?

同源与跨域

1.如何区分是同源还是跨域?

2.跨域请求在项目中的场景和意义,以及解决跨域的方案?

3.CROS资源跨域共享如何设置跨域请求?

标签:必背,axios,跨域,response,post,data,fetch,请求
来源: https://blog.csdn.net/pinganaaa/article/details/121447272