菱形背部功能

发布于 2024-12-07 21:34:23 字数 425 浏览 0 评论 0原文

我在 Rhomobile 中使用后退按钮功能时遇到问题。

我尝试过 url_for(:index, :back => ....) 等各种方法,但似乎没有任何效果。这种方法的问题是(即使它有效)它只允许导航到设定的位置,而不是动态历史记录/返回导航。

我最接近的工作解决方案是在 application_helper: 中使用它

def page_back
    WebView.navigate_back
end

,然后在视图中使用 Back

这是可行的,我可以跨视图甚至控制器进行导航。但是,它会生成“加载页面时出错”错误,即使它确实呈现了正确的页面......

有人有任何想法吗?

I'm having a problem getting the back button function to work in Rhomobile.

I've tried various methods of url_for(:index, :back => ....) etc etc and nothing seems to work. The problem with this method is (even if it worked) that it only allows navigation to a set place, rather than a dynamic history/back navigation.

The closest I've come to a working solution is by using this in the application_helper:

def page_back
    WebView.navigate_back
end

and then <a href="page_back">Back</a> in the view.

This works, and i can navigate across views and even controllers. However, it generates a "Error loading page" error, even though it does actually render the right page...

Does anybody have any ideas?

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

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

发布评论

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

评论(1

独﹏钓一江月 2024-12-14 21:34:23

好吧,这就是我最终所做的。我现在决定不使用 rhodes,但这是我针对此问题想到的:

data-add-back-btn="true" 添加到:

<div data-role="page" data-add-back-btn="true">

然后:

<div data-role="header" data-position="inline">
    <h1>Title</h1>
    <a href="page_back" class="ui-btn-left" data-theme="a" data-icon="arrow-l" data-rel="back" data-direction="reverse">Back</a>
</div>

Ok this is what I did in the end. I've decided against using rhodes now but here is what I came up with for this problem:

Added data-add-back-btn="true" to:

<div data-role="page" data-add-back-btn="true">

Then:

<div data-role="header" data-position="inline">
    <h1>Title</h1>
    <a href="page_back" class="ui-btn-left" data-theme="a" data-icon="arrow-l" data-rel="back" data-direction="reverse">Back</a>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文