iPhone 上的 Phonegap 应用程序触发“帧加载中断”错误
Posted
技术标签:
【中文标题】iPhone 上的 Phonegap 应用程序触发“帧加载中断”错误【英文标题】:Phonegap app on iPhone triggers "Frame load interrupted" error 【发布时间】:2016-05-06 01:18:42 【问题描述】:我已经构建了一个混合的 Phonegap 应用程序。我是 android 用户,所以我在 KitKat 上对其进行了测试,并且成功了。我已经把它发给了我的客户,他是一个 iPhone 用户,他给我发了这个截图:
Config.xml
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.swapco.swapco" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>SwapCo</name>
<description>
SwapCo
</description>
<author email="support@phonegap.com" href="http://phonegap.com">
SwapCo
</author>
<content src="index.html" />
<preference name="permissions" value="none" />
<preference name="orientation" value="default" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="true" />
<preference name="webviewbounce" value="true" />
<preference name="prerendered-icon" value="true" />
<preference name="stay-in-webview" value="false" />
<preference name="ios-statusbarstyle" value="black-opaque" />
<preference name="detect-data-types" value="true" />
<preference name="exit-on-suspend" value="false" />
<preference name="show-splash-screen-spinner" value="true" />
<preference name="auto-hide-splash-screen" value="true" />
<preference name="disable-cursor" value="false" />
<preference name="android-minSdkVersion" value="10" />
<preference name="android-installLocation" value="auto" />
<gap:plugin name="org.apache.cordova.battery-status" />
<gap:plugin name="org.apache.cordova.camera" />
<gap:plugin name="org.apache.cordova.media-capture" />
<gap:plugin name="org.apache.cordova.console" />
<gap:plugin name="org.apache.cordova.contacts" />
<gap:plugin name="org.apache.cordova.device" />
<gap:plugin name="org.apache.cordova.device-motion" />
<gap:plugin name="org.apache.cordova.device-orientation" />
<gap:plugin name="org.apache.cordova.dialogs" />
<gap:plugin name="org.apache.cordova.file" />
<gap:plugin name="org.apache.cordova.file-transfer" />
<gap:plugin name="org.apache.cordova.geolocation" />
<gap:plugin name="org.apache.cordova.globalization" />
<gap:plugin name="org.apache.cordova.inappbrowser" />
<gap:plugin name="org.apache.cordova.media" />
<gap:plugin name="org.apache.cordova.network-information" />
<gap:plugin name="org.apache.cordova.splashscreen" />
<gap:plugin name="org.apache.cordova.vibration" />
<icon src="icon.png" />
<icon gap:platform="android" gap:qualifier="ldpi" src="www/res/icon/android/icon.png" />
<icon gap:platform="android" gap:qualifier="mdpi" src="www/res/icon/android/icon.png" />
<icon gap:platform="android" gap:qualifier="hdpi" src="www/res/icon/android/icon.png" />
<icon gap:platform="android" gap:qualifier="xhdpi" src="www/res/icon/android/icon.png" />
<icon gap:platform="blackberry" src="www/res/icon/blackberry/icon-80.png" />
<icon gap:platform="blackberry" gap:state="hover" src="www/res/icon/blackberry/icon-80.png" />
<icon gap:platform="ios" src="www/res/icon/ios/icon.png" />
<icon gap:platform="ios" src="www/res/icon/ios/icon.png" />
<icon gap:platform="ios" src="www/res/icon/ios/icon.png" />
<icon gap:platform="ios" src="www/res/icon/ios/icon.png" />
<icon gap:platform="webos" src="www/res/icon/webos/icon-64.png" />
<icon gap:platform="winphone" src="www/res/icon/windows-phone/icon-48.png" />
<icon gap:platform="winphone" gap:role="background" src="www/res/icon/windows-phone/icon-173-tile.png" />
<gap:splash gap:platform="android" gap:qualifier="port-ldpi" src="www/res/screen/android/screen-ldpi-portrait.png" />
<gap:splash gap:platform="android" gap:qualifier="port-mdpi" src="www/res/screen/android/screen-mdpi-portrait.png" />
<gap:splash gap:platform="android" gap:qualifier="port-hdpi" src="www/res/screen/android/screen-hdpi-portrait.png" />
<gap:splash gap:platform="android" gap:qualifier="port-xhdpi" src="www/res/screen/android/screen-xhdpi-portrait.png" />
<gap:splash gap:platform="blackberry" src="www/res/screen/blackberry/screen-225.png" />
<gap:splash gap:platform="ios" src="www/res/screen/ios/screen-iphone-portrait.png" />
<gap:splash gap:platform="ios" src="www/res/screen/ios/screen-iphone-portrait-2x.png" />
<gap:splash gap:platform="ios" src="www/res/screen/ios/screen-iphone-portrait-568h-2x.png" />
<gap:splash gap:platform="ios" src="www/res/screen/ios/screen-ipad-portrait.png" />
<gap:splash gap:platform="ios" src="www/res/screen/ios/screen-ipad-landscape.png" />
<gap:splash gap:platform="winphone" src="www/res/screen/windows-phone/screen-portrait.jpg" />
<access origin="*" />
<plugin name="cordova-plugin-whitelist" version="1" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<engine name="android" spec="^4.0.0" />
<engine name="ios" spec="^3.8.0" />
<feature name="Camera">
<param name="android-package" value="org.apache.cordova.camera.CameraLauncher" />
</feature>
<gap:config-file platform="android" parent="/manifest">
<application android:debuggable="true" />
</gap:config-file>
</widget>
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>XXX</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="row">
<div class=" col-xs-4 col-xs-push-4 col-sm-4 col-sm-push-4 col-md-2 col-md-push-5">
<img src="images/logo.png" class="img-responsive center-block logo">
</div>
</div>
<div class="row">
<div class=" col-xs-12 col-sm-8 col-sm-push-2 col-md-4 col-md-push-4">
<br />
<h2 class="text-center white">Welcome!</h2>
<p class="text-center white">Selling made simple.</p>
<div class="input-area" style="margin-top:60px">
<input id="username" type="text">
<span class="icon"><i class="fa fa-user"></i> </span>
</div>
<div class="input-area">
<input id="password" type="password">
<span class="icon"><i class="fa fa-key"></i> </span>
</div>
</div>
<div class="bottom-buttons">
<button type="button" onclick="authenticate()" class="btn signin pull-left">SIGN IN</button>
<a href="signup.html"><button type="button" class="btn signup pull-right">SIGN UP</button></a>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's javascript plugins) -->
<script src="js/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!-- Latest compiled and minified JavaScript -->
<script src="js/bootstrap.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>
我是 Apple 新手,非常欢迎任何 cmet。顺便说一句,我正在使用 iOS 构建的开发证书,并且我已经将他的 iPhone 链接到它们。
【问题讨论】:
什么时候出现这个错误?您是否正在访问外部 URL,能否请您分享您遇到此错误的流程,您发布的代码具有登录和注册元素,并且屏幕截图显示了一个后退按钮。我会尽快帮你解决这个问题。如果你能解释问题。 【参考方案1】:对于 iOS,请确保您遵循适用于 iOS 9+ 的 ATS 应用传输政策
如果你想访问外部 URL,你可以将你的属性设置为 optionalloads true。
例如PhoneGap: modify config.xml to add properties to Info.plist ion iOS
【讨论】:
【参考方案2】:编辑
以下是我注意到的一些事情:
index.html 中缺少<script type="text/javascript" src="cordova.js"></script>
<plugin name="cordova-plugin-whitelist" version="1" />
中的version
应设置为1.0.0
。
另外,如果没有这个元标记 <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *">
,我不确定它在 Android 上的运行情况。在Content-Security-Policy 上查找更多信息。
没有任何代码,我无法提出任何建议,但我在 Stack Overflow 上发现了这个 question,它似乎对你有帮助。
似乎是 URL 问题。
【讨论】:
嘿。我的客户说他甚至不能安装它?这有意义吗? 您正在链接的问题中的那个人正在使用 MVC / 路由器。我们不是,它只是一个将 AJAX 构建为混合应用程序的普通网页。它适用于 Android,不适用于 iOS。 如果他无法安装它,那么这意味着他的设备没有被配置(或者他正在使用不在配置列表中的其他 iOS 设备),或者你已经构建了应用程序分发证书,或者证书/配置文件已过期。【参考方案3】:在 iOS 模拟器中能用吗?
【讨论】:
能否请您链接一个我可以使用的? 你不是在 Mac 上开发吗?如是。您需要下载 XCode。获取 XCode。 我不是,我在 PC 上。 如果您愿意,我可以帮助您。基本的事情是您需要在 iOS 设备或模拟器上进行测试以调试应用程序。并知道出了什么问题。我没有检查你发布的源代码。我假设您使用的是Mac。一个建议,我试过使用Phonegap Build,但它真的没有把我带到任何地方。切换到在实际机器上运行的 cordova 或 phonegap 会更好。 :-)【参考方案4】:问题出在证书上。
为了解决这个问题,我发布了分发(而不是开发)证书、两个规定(用于本地测试和 AppStore 的 Ad Hoc),然后它就起作用了。
【讨论】:
以上是关于iPhone 上的 Phonegap 应用程序触发“帧加载中断”错误的主要内容,如果未能解决你的问题,请参考以下文章
iPhone上的jQuery Mobile + PhoneGap无法加载页面
是否可以在 iPhone 上的 phonegap 应用程序中在后台跟踪 gps 位置?
使用phonegap和jquery mobile开发iphone应用程序时如何禁用本机键盘上的Go按钮?