我最近向所有返回 JSON 的服务器代码添加了 JSON 内容类型。即 header('Content-Type: application/json'); 我也有很多脚本只期望真/假或 1/0。我知道我不需要指定内容类型,但是,我很好奇这是否是最佳实践,我应该这样做。请指教。谢谢
我的非 JSON ajax Javascript
$.post('file.php',obj,
function (status) {
if(status==1) {alert('do this');}
else{alert('do that');return false;}
});
文件.php
<?php
header('Content-Type: ???/???');
echo(1);
?>