我最近将JSON内容类型添加到返回JSON的所有服务器代码中。 ie 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;}
});
file.php
<?php
header('Content-Type: ???/???');
echo(1);
?>
答案 0 :(得分:1)
header('Content-Type: text/plain');