weinre 与 iPhone 模拟器

发布于 2024-12-02 20:04:25 字数 384 浏览 1 评论 0原文

我正在试验 iPhone 的 PhoneGap 开发。环境是XCode 4.1,PhoneGap 1.0。我根据 PhoneGap 提供的教程使用 Weinre 远程调试器,当我在 iPhone 模拟器中运行该应用程序时,我在 XCode 输出中收到此错误:

2011-08-31 09:31:15.275 Contacts[898:11803] ERROR whitelist rejection: url='http://localhost:8080/target/target-script-min.js#anonymous'

URL 指向 Weinre 服务器并且它在浏览器中工作。我在谷歌中找不到任何有关“白名单拒绝”错误的信息。知道这是什么意思吗?

谢谢!

I am experimenting the PhoneGap development for IPhone. The environment is XCode 4.1, PhoneGap 1.0. I am using the Weinre remote debugger according to the tutorial provided by PhoneGap, when I run the app in IPhone Simulator, I got this error shown in XCode output:

2011-08-31 09:31:15.275 Contacts[898:11803] ERROR whitelist rejection: url='http://localhost:8080/target/target-script-min.js#anonymous'

The URL is pointing to the Weinre server and it works in browser. I can't find anything about the "whitelist rejection" error in google. Any idea what does this mean?

Thanks!

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

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

发布评论

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

评论(2

阳光的暖冬 2024-12-09 20:04:26

现在 Apache 基金会接管了名称,已从 PhoneGap.plist 更改为 Cordova.plist,但它仍然是ExternalHosts,这帮助我让 Weinre 运行,这产生了巨大的差异直接在 iDevice 上调试时。

Now that Apache Foundation has taken over the name has changed from PhoneGap.plist to Cordova.plist, but it's still ExternalHosts, this helped me get Weinre running which makes a huge difference when debugging directly on an iDevice.

半透明的墙 2024-12-09 20:04:25

Phonegap 最近添加了白名单支持。
请参阅此处此处

要解决此问题,您只需将 PhoneGap.plist 中所需的域添加到 ExternalHosts-Array 中。

在您的情况下,它将是 localhost 并且看起来像这样:

只是代码,因为无法发布图像:

<key>ExternalHosts</key>
<array>
    <string>localhost</string>
    <string>debug.phonegap.com</string>
</array>

whitelist support was recently added to phonegap.
see here and here.

to fix this, you just need to add the needed domains in your PhoneGap.plist to your ExternalHosts-Array.

In your case, it would be localhostand would look like this:

just code, because can't post an image:

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