我正在尝试在黑莓上使用 phonegap 提交 xhr。目前,当我提出请求时,它会默默地失败。我试过使用 jQuery jQuery.getJSON(url , callback)
,
一个 xhr 对象
var xmlhttp = new XMLHttpRequest();
//callback function when XMLHttpRequest is ready
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState==4){
if(xmlhttpForTGT.status==200){
response = xmlhttpForTGT.getResponseText()
}
else{
alert("Request Failed")
}
}
}
xmlhttp.open("GET", url , true)
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded')
xmlhttp.send()
, 和徐
x$('#home').xhr(url,
{method: 'get',
callback: function(){ alert('made request') }});
到目前为止,我无法让他们中的任何一个工作。有没有其他人能够让 xhr 工作?我正在使用 JRE4.6.1 & 使用 eclipse 作为开发环境。当我尝试提出请求时没有抛出错误,有什么建议吗?