header('Content-type:application/json'); // 返回JSON格式
$json_raw = file_get_contents("php://input",true); // 对从axios中获取的值进行编码 加true 返回 array格式 ,否则会变成 String格式
$json=json_decode($json_raw,true); // 对其进行json编码
原创文章,作者:Tingwep,如若转载,请注明出处:https://tingwep.cn/web/id=964