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请求还需要转换吗
相关分类