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请求还需要转换吗
添加回答
举报
0/150
提交
取消