百度开发工具提交的
原因1:
未设置 header
header: {
‘Content-Type’: ‘application/x-www-form-urlencoded’,
‘client’: ‘XCX’
},
原因2:
当请求头中的Content-Type
为application/json
时,PHP不会自动解析为$_POST
。
你需要手动解析:
$data = file_get_contents(‘php://input’);
$decoded_data = json_decode($data, true);
header: {
‘Content-Type’: ‘application/json’ // 确保Content-Type与实际数据类型匹配
}