标签:charset 数据 enc ring 后台 引入 .com err import
在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); });
标签:charset 数据 enc ring 后台 引入 .com err import
原文地址:https://www.cnblogs.com/hanli-you/p/8758719.html