我正在尝试使用phonegap for windows phone 8(lumia 920)的加速计功能。 我已经加入了加速度计的插件:
<Capabilities>
<Capability Name="ID_CAP_SENSORS" />
</Capabilities>
然而,我仍然没有得到任何输出。这些代码是从Windows Phone 8的phonegap文档中获得的。有人可以告诉我这里出了什么问题吗?
<!DOCTYPE html>
<html>
<head>
<title>Acceleration Example</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.4.0.js"></script>
<script type="text/javascript" charset="utf-8">
// Wait for Cordova to load
//
document.addEventListener("deviceready", onDeviceReady, false);
// Cordova is ready
//
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>
答案 0 :(得分:0)
也发生在我身上,尝试使用其他版本的cordova(例如2.5.0)。 有时它也发生在2.5.0版本中。我试图使用事件代码然后运行它然后使用你想要运行的代码,它将工作。 原因尚不清楚为什么会发生这种情况。