7

可能重复:
什么是正确的 JSON 内容类型?

我在 json 上有问题,它只显示“Content-Type:text/html”我在 localhost 上测试,我的在线代码是

header('Access-Control-Allow-Origin: *');

header('Content-Type: application/javascript');
//header('Content-type: text/javascript');
//header('Content-type: application/json');
4

3 回答 3

3

用这个

header('Content-type: application/json');

用于JSON数据

于 2012-09-30T07:10:45.257 回答
1

JSON 的 MIME 类型是application/json

于 2012-09-30T07:11:39.843 回答
1

application/jsonJavaScript 对象表示法 (JSON)的媒体类型

header('Content-type: application/json');

IANA查到这个

好读:

应用程序媒体类型

于 2012-09-30T07:09:44.517 回答