码迷,mamicode.com
首页 > 其他好文 > 详细

向后台发送数据vue

时间:2018-04-09 13:20:16      阅读:546      评论:0      收藏:0      [点我收藏+]

标签: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);
           });

 

向后台发送数据vue

标签:charset   数据   enc   ring   后台   引入   .com   err   import   

原文地址:https://www.cnblogs.com/hanli-you/p/8758719.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!