wx.request发起的是 HTTPS 请求POST参数不能接收
wx.request({ url: 'https://chenzhoulife.com/API/post.php', //仅为示例,并非真实的接口地址 data: { title:'1' }, method:'POST', header: { 'Content-Type': 'application/json' //'Content-Type': 'application/x-www-from-urlencoded' }, success: function(res) { console.log(res.data) } }) }, formReset: function() { console.log('form发生了reset事件') } <?php include 'Mysql.class.php'; $title = $_POST['title'];//$_POST['title']数据接收不到