通过 Rails 中的包装方法传递可选参数
我有以下 link_to
包装方法:
def link_to_with_current(text, link, condition, *args)
current_class = condition ? 'current' : nil
link_to text, link, :class => current_class, *args
end
使用此示例调用时:
link_to_with_current 'My Link', '/mylink.html', true, :id => 'mylink'
生成以下链接:
<a href="/mylink" class="current">My Link</a>
为什么 ID 不显示?
I have the following wrapper method for link_to
:
def link_to_with_current(text, link, condition, *args)
current_class = condition ? 'current' : nil
link_to text, link, :class => current_class, *args
end
When called with this sample:
link_to_with_current 'My Link', '/mylink.html', true, :id => 'mylink'
The following link is generated:
<a href="/mylink" class="current">My Link</a>
Why doesn't the ID show up?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
感谢 theIV 的建议,我找到了一个可行的版本:
Thanks to theIV's suggestion, I found a version that works: