axios,post请求传递不了参数

发布于 2022-09-05 02:22:08 字数 602 浏览 8 评论 0

new Vue({
    el: '.box',
    data: {},
    methods: {
        get: function() {
            axios({
                method: 'post',
                url: 'post.php',
                data: {
                    a: '1'
                }
            }).then(function(response) {
                alert(response.data);
            }).catch(function(error) {
                alert(error);
            });
        }
    }
});

post.php 文件

$a=$_POST['a'];
$b=$_POST['b'];
echo $a;

大家帮我看看是什么原因,是post请求还需要转换吗

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(9

ゃ懵逼小萝莉 2022-09-12 02:22:08

首先,可以试着把axios请求部分换成:

axios.post('post.php', {
    a: '1'
}).then(function(response) {
    alert(response.data);
}).catch(function(error) {
    alert(error);
});

另外,由于axios默认发送数据时,数据格式是Request Payload,而并非我们常用的Form Data格式,PHP后端未必能正常获取到,所以在发送之前,需要使用qs模块对其进行处理。

import qs from 'qs';
...
axios.post('post.php', qs.stringify({
    a: '1'
}))
.then( ... )
.catch( ... );
友谊不毕业 2022-09-12 02:22:08

data换成params

无法言说的痛 2022-09-12 02:22:08
var qs = require('qs');


var data = qs.stringify({ 
    a: 1 
}
axios.post('post.php', data)
.then(function(data){
    alert(response.data);
);

try it!

梦断已成空 2022-09-12 02:22:08

从浏览器看网络请求啊,貌似要指定content-type

森林迷了鹿 2022-09-12 02:22:08

你把data换成JSON字符串试试

独行侠 2022-09-12 02:22:08
axios.post('test.php', $.param({
    firstName: 'Fred',
    lastName: 'Flintstone'
}))
倾`听者〃 2022-09-12 02:22:08

// transformRequest 允许在向服务器发送前,修改请求数据
// 只能用在 'PUT', 'POST' 和 'PATCH' 这几个请求方法
// 后面数组中的函数必须返回一个字符串,或 ArrayBuffer,或 Stream
transformRequest: [function (data) {

// 对 data 进行任意转换处理

return data;

}],

余厌 2022-09-12 02:22:08

return Axios({

  method: method,
  url: url,
  params: params,
  headers: { 'Content-type': 'application/json' }
}).then((response) => {

  const res = response.data;
  return res;

}).catch((error) => {
  
  return error;
});

}
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文