您的位置:首页 > 健康 > 美食 > 电商类网站有哪些_网络域名后缀_关键字_2023年10月爆发新冠

电商类网站有哪些_网络域名后缀_关键字_2023年10月爆发新冠

2024/10/31 15:14:44 来源:https://blog.csdn.net/xiao_jin_gang/article/details/143090629  浏览:    关键词:电商类网站有哪些_网络域名后缀_关键字_2023年10月爆发新冠
电商类网站有哪些_网络域名后缀_关键字_2023年10月爆发新冠

Axios 是一个异步请求技术,核心作用就是用来在页面中发送异步请求,并获取对应数据在页面中渲染 页面局部更新技术 Ajax

中文网站:https://www.kancloud.cn/yunye/axios/234845

安装:

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

GET方式的请求
    //发送GET方式请求axios.get("http://localhost:8080/user/findAll?name=w").then(function (responese){console.log(responese.data);}).catch(function (error){console.log(error); //请求正确的情况下没值})

POST方式请求
    //发送POST方式请求axios.post("http://localhost:8080/user/save",{username:"w",age:"23",email:"123123123@qq.com",phone:"12332131"}).then(function (resp){console.log(resp.data)}).catch(function (error){console.log(error)})

axios并发请求
    //1、创建一个查询所有的请求function findAll(){return axios.get("http://localhost:8989/user/findAll?name=阿昌");}//2、创建一个保存的请求function save(){return axios.post("http://localhost:8989/user/save",{username:"achang",age:"23",email:"995931576@qq.com",phone:"165534841"});}//3、并发执行axios.all([findAll(),save()]).then(axios.spread(function (resp1,resp2){ //【.spread】 用来将一组函数的响应结果汇总处理,回调函数的结果会以顺序放在参数1/2/3...console.log(resp1.data);console.log(resp2.data);})); //【.all】用来发送一组并发请求

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com