Ruby on Rails link_to 内部 id

发布于 2024-08-14 20:41:50 字数 392 浏览 1 评论 0原文

我如何使用 link_to 才能正常转到页面上的特定(html)ID 如果我想转到我可以使用的页面上的“whatever_id”

<a href="http://www.example.com/index/mypage#whatever_id>Click Here</a>

,但我想使用我的 link_to

<%= link_to "click here" , {:action => "mypage", :controller => "index" }, :id => "#whatever_id"%> 

辅助方法。有谁知道该怎么做?是否可以?

轨道2.3.4

How do i use a link_to inorder to go to a specific (html) ID on a page normally
if i wanted to go to the "whatever_id" on a page i could use

<a href="http://www.example.com/index/mypage#whatever_id>Click Here</a>

but i would like to use my link_to

<%= link_to "click here" , {:action => "mypage", :controller => "index" }, :id => "#whatever_id"%> 

helper methods. Does anyone know how to do this? Is it possible?

Rails 2.3.4

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

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

发布评论

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

评论(1

可是我不能没有你 2024-08-21 20:41:50

link_to 可以将锚点添加到 URL。

文档

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

在您的情况下,您可能想要,

 <%= link_to "click here" , {:action => "index", :controller => "mypage", :anchor => "whatever" } %>

link_to can add anchors to a URL.

From the documentation,

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

In your case you probably want,

 <%= link_to "click here" , {:action => "index", :controller => "mypage", :anchor => "whatever" } %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文