我一直在寻找 stackoverflow 来寻找我的问题的答案,但我似乎无法找到发生这种情况的原因。
我创建了一个返回 JSON 对象的网络服务器:
http://213.125.101.19/api.php?function=test
之后,我使用以下 javascript 创建了一个 HTML 文件,以使用 Ajax 调用 JSON
<script language="javascript" type="text/javascript">
<!--
//Browser Support Code
function ajaxCall(){
var ajaxRequest; // The variable that makes Ajax possible!
try{
// Opera 8.0+, Firefox, Safari
ajaxRequest = new XMLHttpRequest();
} catch (e){
// Internet Explorer Browsers
try{
ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try{
ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e){
// Something went wrong
alert("Your browser broke!");
return false;
}
}
}
// Create a function that will receive data sent from the server
ajaxRequest.onreadystatechange = function(){
if(ajaxRequest.readyState == 4){
var response = ajaxRequest.responseText;
obj = JSON.parse(response);
console.log(obj);
if(response.indexOf("Fatal error")>=0){
alert('Error, Try again.');
}else{
document.getElementById("response").value = response;
}
}
}
ajaxRequest.open("GET", "http://213.125.101.19/api.php?function=test", true);
ajaxRequest.send(null);
}
</script>
当我运行此代码时,我的 Firebug 返回
“SyntaxError: JSON.parse: 数据 obj = JSON.parse(response) 意外结束;”
如果我通过验证器运行我的 JSON,一切似乎都很好。
任何想法如何解决这一问题?
亲切的问候,卢克