在 PhoneGap 中调用 window.location.href 会触发 Web 浏览器

发布于 2024-11-05 13:18:34 字数 253 浏览 0 评论 0原文

你好 我正在尝试使用 PhoneGap 开发 iPad 应用程序。我想在 index.html 页面内动态加载外部网站的主页。 不幸的是,使用

window.location.href = "http://mywebsite.com/cgi-bin/index.py"

触发了 Safari 窗口的打开,而不是使用 PhoneGap 容器。

有什么建议吗?

非常感

谢克劳斯

Hello
I'm trying to develop an application for iPad using PhoneGap. I would like to dinamically load inside the index.html page the main page of an external website.
Unfortunately using

window.location.href = "http://mywebsite.com/cgi-bin/index.py"

triggers the opening of a Safari window instead of using the PhoneGap container.

Any suggestions?

Thanks a lot

Claus

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

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

发布评论

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

评论(2

无声情话 2024-11-12 13:18:34

有一个更简单的选项:修改 config.xml

在WebView中打开所有链接

留在 webview 中,值为 true 或 false

  • 示例:

  • 如果设置为 true,所有链接(即使目标设置为空白)都将在应用的 Web 视图中打开

  • 仅当您希望服务器中的页面接管整个应用时才使用此首选项

  • 默认为 false

来源:https://build.phonegap.com/docs/config-xml

There's a simpler option: modify config.xml

Open all links in WebView

stay-in-webview with values true or false

  • example: <preference name="stay-in-webview" value="true" />

  • if set to true, all links (even with target set to blank) will open in the app's webview

  • only use this preference if you want pages from your server to take over your entire app

  • default is false

Source: https://build.phonegap.com/docs/config-xml

南七夏 2024-11-12 13:18:34

在项目的“Classes”部分找到AppDelegate.m文件,并找到webView:shouldStartLoadWithRequest:navigationType
让函数看起来像这样,然后再试一次!

- (BOOL)webView:(UIWebView *)theWebView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
    NSURL *url = [request URL];
    if ([[url scheme] isEqualToString:@"http"] || [[url scheme] isEqualToString:@"https"]) {
        [[UIApplication sharedApplication] openURL:url];    
        return NO;
    }
    else {
       return [ super webView:theWebView shouldStartLoadWithRequest:request navigationType:navigationType ];
    }
}

Find the AppDelegate.m file in the 'Classes' part of the project, and find webView:shouldStartLoadWithRequest:navigationType
Make the function look like this and try again!

- (BOOL)webView:(UIWebView *)theWebView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
    NSURL *url = [request URL];
    if ([[url scheme] isEqualToString:@"http"] || [[url scheme] isEqualToString:@"https"]) {
        [[UIApplication sharedApplication] openURL:url];    
        return NO;
    }
    else {
       return [ super webView:theWebView shouldStartLoadWithRequest:request navigationType:navigationType ];
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文