向后台发送数据vue
Posted 韩丽
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向后台发送数据vue相关的知识,希望对你有一定的参考价值。
在main.js中添加
import axios from ‘axios‘; Vue.prototype.$http = axios;
在需要的登录vue组件中引入:
需要先安装qs cnpm install qs -d
import qs from ‘qs‘
最后
this.$http.post(‘http://tapi.funxdata.com/login/login‘, qs.stringify({ ‘type‘:‘wechat‘, ‘code‘:res.code }),{ headers: { ‘Content-Type‘: ‘application/x-www-form-urlencoded;charset=UTF-8‘ } }).then(function (response) { console.log(response); }).catch(function (error) { console.log(error); });
以上是关于向后台发送数据vue的主要内容,如果未能解决你的问题,请参考以下文章