gpt4 book ai didi

javascript - 无法在 xcode 中使用 iOS 的 PhoneGap 方法

转载 作者:行者123 更新时间:2023-12-02 18:27:34 25 4
gpt4 key购买 nike

我确实让它读取 html 并使用常规 js 和 jQuery 方法,但是当我尝试使用 these commands 时它没有给我任何东西。 .

这些在我的脚本之前:

<script src="phonegap.js"></script>
<script src="cordova-1.5.0.js"></script>

这样做:

var text = "grewrfar";
document.write(text);

...工作正常,例如:

var text = device.uuid;
document.write(text);

...没有。

此外,我看到有些人在命令之前使用导航器:

var text = navigator.device.uuid;
document.write(text);

这也不起作用。

如何让它发挥作用?谷歌搜索并没有让我接近对此的讨论,所以我猜我正在做一些非常愚蠢的事情。只要轻轻一点就可以看到,我们将不胜感激。谢谢!

最佳答案

看起来您正在尝试在 onDeviceReady 之前访问 Phonegap 的 API事件正在被触发。

将其添加到您的 JS -

document.addEventListener("deviceready", onDeviceReady, false);

function onDeviceReady() { //This will fire only when the Phonegap lib is fully loaded
console.log(device.uuid);
}

关于javascript - 无法在 xcode 中使用 iOS 的 PhoneGap 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18201200/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com