后台php接收不到wx.request GET/POST 的数据
js.文件
wx.request({
url: ‘https://*.php’,
data:{ name: ‘aaa’ },
method: ‘POST’,
header: { “content-type”: “application/x-www-form-urlencoded” },
php.文件
echo $_POST[‘name’];
?>