我正在尝试使用 Phonegap 3.1 创建一个 Android 应用程序。该应用程序需要从我的远程服务器检索数据,该服务器正在运行 Apache,并Header set Access-Control-Allow-Origin "*"
为应用程序应该从中提取数据的 URI 设置了指令。我已经<access subdomains='true' url='*' />
在 Phonegap 的 config.xml 文件中设置了。如果我将网页放入与服务器分开的本地 Apache 目录(不同物理位置的不同域上的不同机器)并从 Chrome 调用它,但当我尝试调用它时,下面的代码可以工作并运行“成功”功能通过Phonegap,它会抛出一个不太有用的错误{"readystste":0,"responseText":"","status":0,"statusText":"error"}
。"readystate":0
看起来它可能是仅在 Phonegap 中发生的访问或跨站点脚本错误,所以我愿意相信这是我需要在我的最终配置的东西,但我
感谢您的任何帮助,您可以提供。我需要让它运行,并且已经在网上搜索了一个星期试图让它工作。
<!DOCTYPE HTML>
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="css/affirmation.css">
<script src="js/jquery-1.10.1.min.js"></script>
<script>
$.support.cors = true;
$(document).ready(function(){
$.ajax({
type: 'POST',
url: 'http://www.remote.server/info/API',
datatype: 'json',
data: JSON.stringify(
{ method: 'content',
params: [
'text passed to function on server'
],
id: '1' }
),
success: function(response, textstatus, jqxhr) {
$('#graf1').text(JSON.stringify(response));
$('#graf3').text(JSON.stringify(textstatus));
$('#graf6').text(JSON.stringify(jqxhr));
},
error: function(jqxhr, textstatus, errorthrown) {
$('#graf1').text(JSON.stringify(jqxhr));
$('#graf3').text(JSON.stringify(textstatus));
$('#graf6').text(JSON.stringify(errorthrown));
}
});
});
</script>
</HEAD>
<BODY>
<DIV ID="header">JSON Server Test</DIV>
<DIV ID="content">
<DIV ID="graf1" CLASS="bodytext"></DIV>
<DIV ID="graf3" CLASS="bodytext"></DIV>
<DIV ID="graf6" CLASS="bodytext"></DIV>
</BODY>
</HTML>