我試圖從WordPress博客中檢索JSON數據。我使用JSON API插件來獲取JSON對象。在JavaScript中爲Phonegap項目回溯json數據
請檢查我的代碼。它顯示錯誤狀態0.並且無法檢索數據。
var xmlhttp;
window.onload = function(){
document.addEventListener("deviceready",init,false);
}
function init(){
xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET","http://www.foduu.com/api/get_recent_posts/", false);
xmlhttp.send();
xmlhttp.onreadystatechange = dataReturn;
}
function dataReturn(){
if(xmlhttp.readyState==4 && xmlhttp.status == 200){
var jsonResponse = xmlhttp.responseText;
jsonResponse = eval("("+jsonResponse+")")
alert("jsonResponse.count_total");
}
else
{
alert("could not connect and Status:" + xmlhttp.status);
}
}
請幫我這個。
先謝謝您。
我可以在phonegap中使用它嗎? – user3201500