将当前页面 id 传递给 link_to (Ruby/Rails)

发布于 2024-11-30 02:45:17 字数 309 浏览 0 评论 0原文

如果这看起来有点模糊,我们深表歉意。

基本上我有一个根据 id 加载内容的页面。我正在尝试像这样将链接放在其中,

<%= link_to 'mypage', {:action => 'mypageload', :id => '1'},{:class=>'mypages'}%>

我想做的是将当前页面的 id 传递到此链接中。

那么类似

:id => 'params[:id]'

有没有办法做到这一点?

Apologies if this seems a bit vague.

Basically I have a page which loads content based on id. I'm trying to put links withing it like this

<%= link_to 'mypage', {:action => 'mypageload', :id => '1'},{:class=>'mypages'}%>

What I'd like to do is pass the id of the current page into this link.

So something like

:id => 'params[:id]'

Is there a way to do this?

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

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

发布评论

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

评论(2

白龙吟 2024-12-07 02:45:17

删除单引号: :id =>参数[:id]

Remove the single quotes: :id => params[:id]

携余温的黄昏 2024-12-07 02:45:17

是的,您可以在视图中使用 params 变量。在您的示例中,您将参数放在引号内,使其成为字符串。只要把它们去掉就可以了,就像这样:

<%= link_to 'mypage', {:action => 'mypageload', :id => params[:id]},{:class=>'mypages'}%>

Yes, you can use the params variable in the views. In your example you put the params inside quotes making it a string. Just leave those out and you should be fine, like this:

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