将当前页面 id 传递给 link_to (Ruby/Rails)
如果这看起来有点模糊,我们深表歉意。
基本上我有一个根据 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
删除单引号:
:id =>参数[:id]
Remove the single quotes:
:id => params[:id]
是的,您可以在视图中使用 params 变量。在您的示例中,您将参数放在引号内,使其成为字符串。只要把它们去掉就可以了,就像这样:
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: