我想通過jQuery ajax
函數發送一個數據到PHP腳本並接收響應 - 成功或失敗。我使用的代碼:從jQuery發佈JSON到PHP
的JavaScript:
$.ajax({
type: 'POST',
url: 'foo.php',
dataType: 'json',
data: {
foo: 'foo'
},
success: function (response) {
...
},
error: function (response) {
...
}
});
PHP:
<?php
header("Content-Type: text/json");
echo $_POST['foo']
?>
然而,這總是返回錯誤,因爲header("Content-Type: text/json");
。
這裏做錯了什麼?
您可以嘗試'application/json'來代替。 – RichGoldMD
@RichGoldMD嘗試過'header(「Content-Type:application/json」);' - 同樣的錯誤。 – Oleg
那麼,錯誤文本是什麼? –