我正在制作一个 jQuery/AJAX 文件上传器。我收到的响应文本是浏览器的源代码,而不是 JSON 字符串。
例如:
#image.php
print(json_encode(array(true, "Images were uploaded"));
#image.js
function uploadImages(){
form = new FormData($(this).closest("form")[0]);
$.ajax({
url: "ajax.php?action=sFi&json=nei",
type: "post",
xhr: function(){return($.ajaxSettings.xhr())},
data: form,
cache: false,
contentType: false,
processData: false,
success: function(json){
//response = $.parseJSON(json);
//alert(response);
console.log(json);
},
error: function(){
alert("ERROR");
}
});
}
在控制台日志中,会有
<html>
<head>
<title>text</title>
//Other html stuff
</head>
<body>
//Other html stuff
</body>
</html>
而不是:真,“图像已上传”。有谁知道为什么没有返回从 php 文件打印的 json 字符串?