Phonegap:类似于 Android 中 app.loadurl 的 IOS API

发布于 2025-01-07 13:41:01 字数 237 浏览 0 评论 0原文

我正在将 Android PhoneGap (v1.3) 应用程序移植到 ios。但坚持遵循 loadUrl api,
PhoneGap.exec(null, null, "App", "loadUrl", [url, props]);
我无法找到与 IOS 类似的 api。
我可以使用 window.location.href,但那不能正常工作。 :(
iOS Phonegap中有类似的Api吗?请帮忙。

I am porting android phonegap (v1.3) application to ios. but stuck on following loadUrl api,
PhoneGap.exec(null, null, "App", "loadUrl", [url, props]);
I am not able to find out an api similar to this for IOS.
I could use window.location.href, but thats not working properly. :(
Is there a similar Api in iOS Phonegap? pls help.

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

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

发布评论

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

评论(2

ㄟ。诗瑗 2025-01-14 13:41:01

我刚刚尝试了以下代码,它们都工作正常。

window.location="page.html";

window.location.href="page.html";

“无法正常工作”是什么意思?

I just tried the following code and they both work fine.

window.location="page.html";

window.location.href="page.html";

What do you mean by 'not working properly' ?

如梦亦如幻 2025-01-14 13:41:01

我建议您使用 PhoneGap/iOS 的 ChildBrowser 插件: https://github .com/purplecabbage/phonegap-plugins/tree/master/iPhone/ChildBrowser

I recommend you to use ChildBrowser plugin for PhoneGap/iOS: https://github.com/purplecabbage/phonegap-plugins/tree/master/iPhone/ChildBrowser

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