出现php无法获取到小程序传递的数据情况,无论是get还是post都不行
wx.request({
url: 'http://www.tp5.com/login/login',
data: {
userName:'hello',
psw:'123'
},
method:'POST',
header: {
'Content-Type': 'application/x-www-form-urlencoded'
},
success:function(result){
console.log(result);
}
})
php
<?php
echo $_POST['userName'];