小程序的网络请求默认请求头是'content-type': 'application/json'
,如果用php做为服务端,你会发现get方法请求时,服务端$_GET
有值,而post方法请求时,服务端$_POST
无值
解决方法
- 请求头换成
header: {"Content-Type":"application/x-www-form-urlencoded"}
- 请求头不换,php端使用
$xmlstr= file_get_contents("php://input")
获取参数
小程序的网络请求默认请求头是'content-type': 'application/json'
,如果用php做为服务端,你会发现get方法请求时,服务端$_GET
有值,而post方法请求时,服务端$_POST
无值
解决方法
header: {"Content-Type":"application/x-www-form-urlencoded"}
$xmlstr= file_get_contents("php://input")
获取参数本文标题:小程序post请求
本文链接:https://www.haomeiwen.com/subject/hdyubftx.html
网友评论