vue进行post和get请求实例讲解
目录
- 一、基本使用方法
- 1、get请求
- 2.Post请求
一、基本使用方法
1、get请求
// Make a request for a user with a given IDaxios.get('/user?ID=12345') .then(function (response) {console.log(response); }) .catch(function (error) {console.log(error); }); // Optionally the request above could also be done asaxios.get('/user', {params: {ID: 12345} }) .then(function (response) {console.log(response); }) .catch(function (error) {console.log(error); });
2.Post请求
axios.post('/user', { firstName: 'Fred', lastName: 'Flintstone'}).then(function (response) { console.log(response); }).catch(function (error) { console.log(error); });
简单示例:
// 在进行 post 和 get 请求的时候,使用 axios 进行访问// 进行 get 请求axios.get(url).then(function (response){console.log(response); }).catch(function(error){console.log(error); }); // 进行post 请求axios.post(url,{firstName:'Fred',lastName:'Flintstone'}).then(function (response) {console.log(response); }).catch(function (error) {console.log(error); });
【vue进行post和get请求实例讲解】 这样发送请求,虽然是可以发送,但是携带的参数,是一个json字符串,会出现问题。所以我们在用post发送请求的时候,需要这样:
axios({method:'post',url:url,data:{title:this.title,content:this.content},headers:{'Content-Type': 'application/x-www-form-urlencoded'},transformRequest: function(obj) {var str = []; for(var p in obj){str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p])); }return str.join("&"); }}).then((res)=>{console.log(res.data); });
文章图片
上面这种只能提交一些简单的数据,对于复杂的数据,可以考虑使用 QS 对数据进行处理。
使用方法,如果找不到QS文件,可以只用 npm 安装:
npm install qs
文章图片
下载这个文件之后,使用 script 标签正常引入即可。
使用方法:
var formData = https://www.it610.com/article/Qs.stringify({imgIds: [48,49],}); axios.post(url,Qs.stringify(this.formData)).then(function (response) {console.log(response); }).catch(function (error) {console.log(error); });
或者是:
axios({method: 'post',url:url,data:Qs.stringify(this.formData),}).then((res)=>{console.log(res); });
到此这篇关于vue进行post和get请求实例讲解的文章就介绍到这了,更多相关vue进行post和get请求内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- vue恢复初始数据this.$data|vue恢复初始数据this.$data,this.$options.data()解析
- 每日新闻(中国首款国产量子计算机控制系统诞生;京东数字科技与香港城市大学设立联合实验室;微软呼吁政府对面部识别技术进行监管...)
- 在TypeScript项目中进行BDD测试
- vue|vue H5 超简单的swiper制作抖音上拉切换视频播放
- vant+vue 实现联想输入框
- vue使用el-table动态合并列及行
- vue.js实现选项卡切换
- java项目精品实战案例|基于Java+SpringBoot+vue+element实现前后端分离蛋糕商城系统详细设计
- 教你VUE中的filters过滤器2种用法
- Vue使用Echarts实现数据可视化的方法详解