【数据库无法收到表单提交数据】本地localhost调试也不能用http请求?
如下,写了个form表单,通过wampserver往sql数据库写数据
wx.request({ url: 'http://localhost/test.php' , header: { "Content-Type" : "application/x-www-form-urlencoded" //把头内容从json格式转换为form格式,方便php数据库接收。 }, method: "POST" , data: { xingming: e.detail.value.xingming, xingbie: e.detail.value.xingbie, aihao: e.detail.value.aihao }, |
test.php
<?php echo $_POST [ "xingming" ] > |
test.php网页显示undefined xingming,是不是因为http请求而不是https请求的缘故?
备注:
在详情里面已经设置了不检验合法域名和https