我正在使用PhoneGap和jQueryMobile以及Kinvey用于数据存储的Javascript方法开发iPad应用程序。它在模拟器中工作正常,我无法在iPad上工作。我附上了下面的index.html代码
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="initial-scale=1.0,maximum-scale=1.0,width=device-width, user-scalable=no;" />
<meta charset="utf-8">
<link rel="stylesheet" href="jquery.mobile-1.1.0.css"/>
<link rel="stylesheet" href="jquery.mobile.structure-1.1.0.css"/>
<link rel="stylesheet" href="jquery.mobile.theme-1.1.0.css"/>
<link rel="stylesheet" href="datetime/jquery.mobile.datebox.min.css" type="text/css"/>
<script type="text/javascript" charset="utf-8" src="phonegap-1.2.0.js"></script>
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="jquery.mobile-1.1.0.min.js"></script>
<script type="text/javascript" src="datetime/jquery.mobile.datebox.min.js"/>
<script async src="kinvey-js.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
if(typeof Kinvey != 'undefined')
{
alert('Kinvey is there');
}
else
{
alert('Kinvey is not there');
}
});
</script>
</head>
<body>
Test
</body>
</html>
我收到警告信息“Kinvey就在那里”,当我在模拟器上运行时,我的iPad上收到“Kinvey不存在”的警告信息。
答案 0 :(得分:2)
您是否尝试过加载库非异步?,更改
<script async src="kinvey-js.js"></script>
为:
<script type="text/javascript" src="kinvey-js.js"></script>
由于您没有从我们的AWS桶中提取库,因此您无需加载库异步。看看这是否有助于使加载更具可预测性。