我搜索了很多,但我找不到答案。我使用英特尔XDK进行Cordova / Phonegap开发。
一切正常(模拟标签,调试等)。我进入Build选项卡并获取我的.apk,将其移动到SD卡并安装,但是,它在运行时不起作用。
如果我使用Phonegap Build(在线)构建我的源代码,一切正常。
我的JS代码:
<script type="text/javascript">
document.addEventListener("backbutton", function(){ return; }, true);
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady()
{
//navigator.splashscreen.hide();
var server = 'http://xxxxxx/index.php?';
var user_uuid = device.uuid;
$( document ).ready
(
function()
{
$("#main_content").css("top", "50%");
$("#main_content").css("margin-top", "-"+($("#main_content").height()/2)+"px");
$("#main_content").show();
$("#big_img_load").attr("src", "img/ajax-loader.gif");
var xinv = setInterval
(
function()
{
var networkState = navigator.connection.type;
if(networkState.trim() == 'none')
$("#no_internet").show();
else
{
$.post
(
server+"do=boot",{useruuid: user_uuid},function(data)
{
if(data.trim() != "ok")
window.location = "error.html";
else
{
clearInterval(xinv);
window.location = "app.html";
}
}
);
}
},
1000
);
}
);
};
</script>
它仍处于加载状态:没有互联网检查,没有POST到URL,没有。
问题出在哪里?为什么只从XDK构建不起作用?
答案 0 :(得分:1)
我怀疑您没有为您的应用正确设置构建设置中的域名列入白名单部分。请参阅此文章以获取一些提示:https://software.intel.com/en-us/articles/cordova-cli-412-domain-whitelisting-with-intel-xdk-for-ajax-and-launching-external-apps并确保使用Crosswalk而不是Android构建您的应用,以便在Android设备上获得最佳效果。