5

我正在使用 Xcode 并试图获取设备的信息,但它没有显示出来。这是我的代码

<!DOCTYPE html>
<html>
<head>
    <title>Device Properties Example</title>

    <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
    <script type="text/javascript" charset="utf-8">

        // Wait for device API libraries to load
        //
        document.addEventListener("deviceready", onDeviceReady, true);

        // device APIs are available


        function onDeviceReady() {
            alert('1');
            var status = device.platform;
            alert('2');
            alert(status);
            $("#deviceProperties").html(status) ;}

        </script>
</head>
<body>
    <p id="deviceProperties">Loading device properties...</p>
</body>
</html>

弹出警报(1),但它只是跳过警报(2)和警报(状态)。我正在使用 PhoneGap 3.0,我做错了什么?

4

2 回答 2

10

安装步骤在 http://docs.phonegap.com/en/3.1.0/cordova_device_device.md.html#Device 你需要安装插件(cordova 3+)

    cordova plugin add org.apache.cordova.device

IOS 不应该在 config.xml 中要求任何特殊配置

于 2014-02-18T01:49:00.123 回答
4

在您的 xcode 项目中检查您的 config.xml (/config.xml) 中的插件标签。查看是否添加了“设备”插件。

<widget>
...
<plugins>
    <plugin name="Device" value="CDVDevice" />

    <plugin name="Logger" value="CDVLogger" />
    <plugin name="Compass" value="CDVLocation" />
    <plugin name="Accelerometer" value="CDVAccelerometer" />
    <plugin name="Camera" value="CDVCamera" />
    <plugin name="NetworkStatus" value="CDVConnection" />
    <plugin name="Contacts" value="CDVContacts" />
    <plugin name="Debug Console" value="CDVDebugConsole" />
    <plugin name="Echo" value="CDVEcho" />
    <plugin name="File" value="CDVFile" />

    ...
</plugins>
</widget>
于 2013-08-26T02:17:05.660 回答