我目前有一个代码片段,我想用它来获取 Ajax 调用并从我的 PHP 文件返回 JSON 数据,我可以在 jQuery 端使用它但是我想要。我的问题是,如果我将数据类型更改为 JSON,我总是收到请求错误,但是当我在 Firebug 中检查它时,我可以看到 PHP 文件刚刚返回了 JSON 值!
这是 HTML:
<form id="formm" method="post">
<input type="text" name="test" value="" id="test"/>
<input type="submit" name="submit" value="Submit"/>
</form>
<div id="result"></div>
这是JS:
$("#formm").submit(function(event) {
/* Stop form from submitting normally */
event.preventDefault();
/* Clear result div*/
$("#result").html('');
/* Get some values from elements on the page: */
var values = $(this).serialize();
/* Send the data using post and put the results in a div */
$.ajax({
url: "functions.php",
type: "post",
dataType: "json",
data: values,
success: function(data) {
alert(data);
},
error:function(){
alert("failure");
$("#result").html('There is error while submit');
}
});
});
PHP 文件:
echo json_encode(array('returned_val' => $_POST['test']));
当我使用 Firebug 检查时,我得到:returned_val“无论我在文本框中输入什么”。谁能告诉我可能是什么问题?
更新:
响应标头:
Accept application/json, text/javascript, */*; q=0.01
Accept-Encoding gzip, deflate
Accept-Language ***
Content-Length 5
Content-Type application/json; charset=utf-8
Host localhost
Referer http://localhost/test/
User-Agent Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0
X-Requested-With XMLHttpRequest
当我将错误放在控制台中时,我得到了这个:
发生以下错误:parsererror SyntaxError: JSON.parse: unexpected character