javascript content-type详解

javascript content-type详解

1 application/x-www-form-urlencoded 

这个类型就是jquery ajax content-type 默认的设置  PHP POST可以接受

2  contentType : "application/json

PHP接受如下

$string = file_get_contents("php://input"); // $string=urldecode($string); parse_str($string, $res); //第一个参数为字符串,第二个参数为结果 // var_dump($res); // $file_in=json_decode($file_in,\'true\'); print_r($res); exit();

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zyxddp.html