这篇文章主要介绍了Vue前端怎么实现与后端进行数据交互的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Vue前端怎么实现与后端进行数据交互文章都会有所收获,下面我们一起来看看吧。
Vue前端与后端数据交互
安装
npm install axios --save
在main.js文件引入
import Axios from 'axios';//后台交互Vue.prototype.$http=Axios//defaults 设置全局默认路径Axios.defaults.baseURL="/"
使用
//第一种this.$http.post('/index/customer/',{//里面写要传的值}).then(function(res) { // console.log('这是返回的客户数据'); // console.log(res.data.data); this.customerArr = res.data.data});//如果是get请求就把post换成get//第二种,推荐使用该方法this.$http({ url: '/index/patchBase/', method: 'get', headers: { 'X-Requested-With': 'XMLHttpRequest' }, params:{}//传值 如:params:{id:1,name:"gw"} }).then(res => { console.log('数据接收'); console.log(res.data.data); });this.$http({ url: '/index/patchBase/', method: 'post', headers: { "Content-Type": "multipart/form-data" }, data:{}//传值 }).then(res => { console.log('数据接收'); console.log(res.data.data); });
需要注意的是 post、get请求的请求头数据不一样,传值方法不一样:get是params,post请求是用data传值
启动vue和前后端连接
直接上图
关于“Vue前端怎么实现与后端进行数据交互”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“Vue前端怎么实现与后端进行数据交互”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。