使用 Rails 的单页应用程序 - URL Helper
我正在开发一个用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么?服务器永远不会在片段标识符之后看到任何内容。 Rails 不会看到此类 URL,并且控制器将无法响应它们。
如果您需要创建以片段标识符结尾的 URL,请使用
:anchor< /代码>
。
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
.