使用 Rails 的单页应用程序 - URL Helper

发布于 2024-11-28 18:06:16 字数 213 浏览 0 评论 0原文

我正在开发一个用 Rails 构建的应用程序,我需要能够生成开头带有“#”字符的 url,如下所示:

user_path outputs "#/user/1"
dashboard_url outputs "http://mydomain.com/#/dashboard"

..等等...

任何想法可能是覆盖的最佳方法网址助手?

I am working on an application built with rails where I need to be able to generate urls with a "#" character at the beginning, like so:

user_path outputs "#/user/1"
dashboard_url outputs "http://mydomain.com/#/dashboard"

..and so on...

Any ideas what might be the best way to override the URL helper?

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

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

发布评论

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

评论(1

£冰雨忧蓝° 2024-12-05 18:06:16

我需要能够生成以“#”字符开头的网址

为什么?服务器永远不会在片段标识符之后看到任何内容。 Rails 不会看到此类 URL,并且控制器将无法响应它们。

如果您需要创建以片段标识符结尾的 URL,请使用 :anchor< /代码>

link_to "Comment wall", profile_path(@profile, :anchor => "wall")
# => <a href="/profiles/1#wall">Comment wall</a>

I need to be able to generate urls with a "#" character at the beginning

Why? The server will never see anything after the fragment identifier. Such URLs won't be seen by Rails, and controllers won't be able to respond to them.

If you need to create a URL which ends with a fragment identifier, use :anchor.

link_to "Comment wall", profile_path(@profile, :anchor => "wall")
# => <a href="/profiles/1#wall">Comment wall</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文