我的JSON是隻顯示有問題 「的Content-Type:text/html的」 我是在本地主機上,我的網上的代碼測試
header('Access-Control-Allow-Origin: *');
header('Content-Type: application/javascript');
//header('Content-type: text/javascript');
//header('Content-type: application/json');
我的JSON是隻顯示有問題 「的Content-Type:text/html的」 我是在本地主機上,我的網上的代碼測試
header('Access-Control-Allow-Origin: *');
header('Content-Type: application/javascript');
//header('Content-type: text/javascript');
//header('Content-type: application/json');
The application/json
JavaScript Object Notation(JSON)的媒體類型
header('Content-type: application/json');
再檢查一下這個從IANA
好讀:
使用本
header('Content-type: application/json');
爲JSON
數據
它不起作用 – user1709424
@ user1709424你能發表一些代碼嗎? –
<?php 要求'include/jamroom-include.inc.php'; header('Access-Control-Allow-Origin:*'); // header('Access-Control-Allow-Methods:*'); // content header header('Content-Type:application/javascript'); header('Content-type:text/*'); header('Content-type:application/*'); header('Content-Type:application/json'); header('Content-Type:application/x-javascript'); header('Content-Type:text/javascript'); header('Content-Type:text/x-javascript'); header('Content-Type:text/x-json'); – user1709424
JSON的MIME類型爲application/json
爲什麼不使用'application/json'? – think123
取消最後一行 – diEcho
[Duplicate](http://stackoverflow.com/q/477816/1077789) – Isuru