2

我正在使用 Phonegap for iOS 构建我的第一个应用程序。我正在尝试获取加速度计值并将其显示为屏幕上的警报。我有最新版本的cordova-2.3.0。这是 index.html 文件的代码 -

<!DOCTYPE html>
<html>
    <head>
        <title>PhoneGap Device Ready Example</title>
        <script type=”text/javascript” charset=”utf-8” src=”cordova-2.3.0.js”&gt;</script>
        <script type=”text/javascript” charset=”utf-8”&gt;
            document.addEventListener(“deviceready”, onDeviceReady, false);

            function onDeviceReady() {
                navigator.accelerometer.getCurrentAcceleration(onSuccess, onError);
            }

            // onSuccess: Get a snapshot of the current acceleration
            //
            function onSuccess(acceleration) {
                alert('Acceleration X: ' + acceleration.x + '\n' +
                      'Acceleration Y: ' + acceleration.y + '\n' +
                      'Acceleration Z: ' + acceleration.z + '\n' +
                      'Timestamp: '      + acceleration.timestamp + '\n');
            }

            // onError: Failed to get the acceleration
            //
            function onError() {
                alert('onError!');
            }
            </script>
    </head>
    <body>
        <h1> Example </h1>
        <p>getCurrentAcceleration </p>
    </body
</html>

然而,什么也没有发生。我得到一个白屏,上面写着 Example 和 getCurrentAcceleration。

有人可以帮忙吗?

谢谢

4

1 回答 1

1
  1. 我不知道是不是你的问题,但你的身体末尾缺少结束标签,它看起来像 </body.

  2. 确保在 config.xml 文件中有这一行:

    <plugin name="Accelerometer" value="CDVAccelerometer" />

  3. 是否还有其他 phonegap 功能,例如 navigator.notification.alert 运作良好?也许您的项目设置不正确?

  4. 确保 cordova-2.3.0.js 适用于 iOS 版本一。

于 2013-01-15T00:06:09.910 回答