尝试将我的 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>
谢谢您的帮助!