3

尝试将我的 PhoneGap javascript 代码移植到 Xcode 以在 iOS 中进行调试。使用 Cordova-3.0.0。

当我打电话时:

navigator.connection.type

我得到 navigator.connection 的“未定义”。

我没有在我的 config.xml 中正确包含网络连接插件,还是有其他问题?是的,我专门为 iOS 包含了正确的 cordova.js 文件。是的,deviceready 已被解雇。

更新:我目前只在 iOS 模拟器上运行它。

我的 config.xml:

<?xml version='1.0' encoding='utf-8'?>
<widget id="com.app.test" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
    <name>Hello Cordova</name>
    <description>
        Description
    </description>
    <author email="dev@callback.apache.org" href="http://cordova.io">
        Apache Cordova Team
    </author>
    <access origin="*" />
    <preference name="fullscreen" value="true" />
    <preference name="webviewbounce" value="true" />
    <plugins>
        <plugin name="NetworkStatus" value="CDVConnection" />
    </plugins>
</widget>

谢谢您的帮助!

4

2 回答 2

7

一直在研究这个,终于想出了解决方案。显然 PhoneGap (Adobe) 最近更新了他们的文档,并填补了我在 Phonegap 3.0.0 中遇到的许多漏洞

1) 要使用命令行界面执行此操作,您必须安装 git 才能运行这些命令。在这里获取git

2) 他们添加到Connection插件文档中以使用以下命令行界面命令将插件添加到项目中:

$ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git
$ cordova plugin rm org.apache.cordova.core.network-information

3) 他们将 config.xml 文件中的声明更新为以下内容(对于 iOS):

<feature name="NetworkStatus">
    <param name="ios-package" value="CDVConnection" />
</feature>
于 2013-08-05T16:50:22.167 回答
2

如果您只是想知道您是否已连接,请尝试在您的 js 中使用 navigator.onLine。在 IOS 8 和 Android 2.3 上为我工作,不需要任何插件

于 2015-03-01T22:16:35.617 回答