vue请求数据 vue请求的方式 vue-resource(vue官方提供的插件2.0停止更新了),axios(第三方插件),fetch(es6新增的原生js)三种。Axios主流: axios–get请求 axios.get(“url”).then((res){console.log(“成功”,res)...
vue请求数据
vue请求的方式 vue-resource(vue官方提供的插件2.0停止更新了),axios(第三方插件),fetch(es6新增的原生js)三种。
Axios主流:
axios–get请求
axios.get(“url”).then((res){console.log(“成功”,res)
}).catch((err)=>{
console.log(“失败”,“err”)
})
axios–post请求
axios.post(“url”).then((res){console.log(“成功”,res)
}).catch((err)=>{
console.log(“失败”,“err”)
})
综合的axios要注意传递参数的不同写法
axios({
url:“xxx”,
method:“get”,
params:{id:“xxx”}
}).then((resolve)=>{console.log(“resolve”,resolve)}).catch((rejeck)=>{console.log(“reject”,reject)})
var params=new URLSearchParams();
params.append("name”,“xxxx”);
axios({
url:“xx”,
method:“post”,
data:params}).then((res)=>{ console.log(res)}).catch((errr)=>{ console.log(“err”,err)})
为了提高代码的复用性,进行封装
requestFun(url){
return new Promise((resolve,reject)=>{
axios({
url,
method:“get”
}).then((ok)=>{console.log(“ok”,ok)
}).catch((err)=>{console.log(“err”,err)
})
})
}
使用的时候先引入再去回掉
fun(){
this.requestFun().then((ok)=>{}).catch((err)=>{
})
本文标题为:vue请求数据
- JS实现左侧菜单工具栏 2022-08-31
- jsPlumb+vue创建字段映射关系 2023-10-08
- layui数据表格以及传数据方式 2022-12-13
- 关于 html:如何从 css 表中删除边距和填充 2022-09-21
- vue keep-alive 2023-10-08
- javascript 判断当前浏览器版本并判断ie版本 2023-08-08
- 基于CORS实现WebApi Ajax 跨域请求解决方法 2023-02-14
- 1 Vue - 简介 2023-10-08
- 深入浅析AjaxFileUpload实现单个文件的 Ajax 文件上传库 2022-12-15
- ajax实现输入提示效果 2023-02-14