在main.js中添加vue
import axios from 'axios';
Vue.prototype.$http = axios;
在須要的登陸vue組件中引入:ios
須要先安裝qs cnpm install qs -dnpm
import qs from 'qs'
最後axios
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); });