安装 PhoneGap 插件时遇到问题

发布于 2025-01-02 23:44:18 字数 901 浏览 0 评论 0原文

我正在尝试安装位于此处的 PhoneGap 插件: https://github .com/phonegap/phonegap-plugins/tree/master/iPhone/MessageBox。但是,我无法让它工作。

以下是我尝试过的步骤:

  1. 确保您的 PhoneGap Xcode 项目已针对 iOS 4 进行更新 SDK
  2. 将 MessageBox 文件夹从 Finder 拖放到您的插件
    XCode 中的文件夹,使用“为任何添加的文件夹创建组”
  3. 将 .js 文件添加到磁盘上的 www 文件夹中,并添加引用 添加到 .js 文件作为 html 文件中的标签
  4. 将带有键 MessageBox 和值 MessageBox 的新条目添加到插件中 PhoneGap.plist

在我的 HTML 页面上,我有:(

<script type="text/javascript">
var messageBox = window.plugins.messageBox;
messageBox.alert('Title', 'Message', function(button) { console.warn('alert', [this, arguments]); });
</script>

请注意,所需的 .js 文件包含在页面的前面),

但不幸的是,当我运行该项目时,我没有看到任何消息框。只是我的 HTML 页面。
我将不胜感激任何帮助,谢谢!

编辑:也许我上面显示的 JavaScript 代码有错误?

I'm trying to install a PhoneGap plugin located here: https://github.com/phonegap/phonegap-plugins/tree/master/iPhone/MessageBox. However, I am unable to get it working.

Here are the steps I have tried:

  1. Make sure your PhoneGap Xcode project has been updated for the iOS 4
    SDK
  2. Drag and drop the MessageBox folder from Finder to your Plugins
    folder in XCode, using "Create groups for any added folders"
  3. Add the .js files to your www folder on disk, and add reference(s)
    to the .js files as tags in your html file(s)
  4. Add new entry with key MessageBox and value MessageBox to Plugins in
    PhoneGap.plist

On my HTML page, I have:

<script type="text/javascript">
var messageBox = window.plugins.messageBox;
messageBox.alert('Title', 'Message', function(button) { console.warn('alert', [this, arguments]); });
</script>

(note that the required .js file is included earlier in the page)

When I run the project, though, I unfortunately do not see any message boxes. Just my HTML page.
I'd appreciate any help, thanks!

EDIT: Maybe there is an error in that Javascript code I've shown above?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

记忆で 2025-01-09 23:44:18

您是否正在等待设备准备好在电话间隙中被呼叫?如果没有,那么您应该这样做,以便插件和所有必要的部分有时间在调用消息框之前初始化

Are you waiting for the deviceready to be called in phonegap? if not then you should do that in order that the plugins and all necessary pieces have time to initialize before you call the message box

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文