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;大家?guī)臀铱纯词鞘裁丛?,是post請求還需要轉(zhuǎn)換嗎
axios,post請求傳遞不了參數(shù)
桃花長相依
2018-11-13 17:13:40