gpt4 book ai didi

javascript - Cordova inappbrowser deviceready 从不触发

转载 作者:行者123 更新时间:2023-11-30 00:17:58 27 4
gpt4 key购买 nike

我有一个 cordova 项目,我需要使用 inappbrowser 插件打开一个带有 cordova 页面的窗口,而“父级”仍在运行。

Cordova 加载 index.html,使用 inappbrowser 插件打开 frame.html
Cordova 已加载到 frame.html 但 deviceready 事件从未触发,5 秒后我在 frame.html 的控制台中收到此错误。

这只发生在使用 inappbrowser 插件打开的第二个 webview 中。

错误:

cordova.js:1183 deviceready has not fired after 5 seconds.
cordova.js:1176 Channel not fired: onFileSystemPathsReady
cordova.js:1176 Channel not fired: onCordovaInfoReady

我搜索了很多,并得出结论,并不是文档加载中的插件或代码过多导致了触发设备就绪所需的 onNativeReady 事件的延迟。
当我删除 cordova-plugin-filecordova-plugin-file-transfer 时,onFileSystemPathsReady 错误消失。如果我删除 cordova-plugin-deviceonCordovaInfoReady 错误就会消失。

但我需要那些插件。
是什么导致设备就绪事件根本没有触发?
我该怎么做才能在不删除我需要的插件的情况下启动它?

项目信息:

Node version: v4.2.2
Cordova version: 5.4.1

Installed platforms:
android 4.1.1
ios 3.9.2

Installed plugins:
cordova-plugin-bluetoothle 2.4.0 "Bluetooth LE"
cordova-plugin-device 1.1.0 "Device"
cordova-plugin-dialogs 1.2.0 "Notification"
cordova-plugin-file 3.0.0 "File"
cordova-plugin-file-transfer 1.4.0 "File Transfer"
cordova-plugin-inappbrowser 1.1.0 "InAppBrowser"
cordova-plugin-vibration 2.0.0 "Vibration"
cordova-plugin-whitelist 1.2.0 "Whitelist"
de.appplant.cordova.plugin.background-mode 0.6.4 "BackgroundMode"

Config.xml file:
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.test.app" version="0.0.1" xmlns="http://www.w3.org/ns/widgets">
<name>TestApp</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<allow-navigation href="http://*/*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>

索引.html :

<!DOCTYPE html>
<html >
<head >
<meta http-equiv="Content-Security-Policy" content="default-src * data: gap: https://ssl.gstatic.com 'unsafe-eval' 'unsafe-inline';" >
<meta name="format-detection" content="telephone=no" >
<meta name="msapplication-tap-highlight" content="no" >
<meta name="viewport" content="user-scalable=no, initial-scale=1, height=device-height, width=device-width" >
<title >Index</title >
<script >
document.addEventListener( 'deviceready', function ()
{
console.log( 'ready' );
win = window.open( 'frame.html', '_blank', 'location=no', function()
{
console.log( arguments );
} );
}, false );
</script >
</head >
<body >
<script type="text/javascript" src="cordova.js" ></script >
</body >
</html >

框架.html :

<!DOCTYPE html>
<html >
<head >
<meta http-equiv="Content-Security-Policy" content="default-src * data: gap: https://ssl.gstatic.com 'unsafe-eval' 'unsafe-inline';" >
<meta name="format-detection" content="telephone=no" >
<meta name="msapplication-tap-highlight" content="no" >
<meta name="viewport" content="user-scalable=no, initial-scale=1, height=device-height, width=device-width" >
<title >Frame</title >
<script >
window.addEventListener( 'deviceready', function()
{
console.log( 'window.deviceready', arguments );
}, false );
document.addEventListener( 'deviceready', function()
{
console.log( 'document.deviceready', arguments );
}, false );
</script >
</head >
<body >
<script type="text/javascript" src="cordova.js" ></script >
</body >
</html >

更新:

我正在使用两个自行修改的插件(不是导致问题的插件),也许这在某种程度上是相关的:

编辑:

我需要使用 inappbrowser 插件,因为蓝牙插件必须在另一个框架中浏览应用程序时保持连接。这些框架还需要能够相互通信,并且都可以访问 cordova 库。

如果有人有其他想法如何做到这一点,我欢迎他们。

更新:

我正在调查 cl.kunder.webview https://github.com/kunder-lab/cl.kunder.webview插件

最佳答案

@ThisNameBetterBeAvailable,

InAppBrowser 没有可用的 Cordova 服务.

来自文档(第 3 段)我引用

The InAppBrowser window behaves like a standard web browser, and can't access Cordova APIs.

这意味着没有插件,没有事件,也没有服务。我试图让他们修复文档的这一部分,但这需要一段时间。

你可以在这里看到:https://issues.apache.org/jira/browse/CB-9470

关于javascript - Cordova inappbrowser deviceready 从不触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34134760/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com