向后台发送数据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的主要内容,如果未能解决你的问题,请参考以下文章

关闭页面时怎样向后台发送消息

向 VueJS + Vue Router 中的组件发送数据

使用FormData 向服务器发送数据,后台asp程序接收不到,请教原因!!!谢谢! 代码如下:

vue前端收到的数据与后台发送的数据不一致是啥原因?

继续在后台运行代码以向单个用户发送通知

关闭页面时向后台发送消息