ruby-on-rails – Ruby on Rails:如何在link_to帮助器中添加类?

你如何得到一个link_to来生成类似的东西
<a class="myclass".....

这是我的代码

<%= link_to "link",:controller => :my_controller,:action => :index,:class=>("on" if request.path =~ /\/my_controller/ ) %>

解决方法

如果您阅读了 API,您将看到以下示例:
link_to(body,url_options = {},html_options = {})

这意味着link_to的语法是“链接到某个东西,然后是大括号中的其他东西,然后是大括号中的另一个东西.”解释它的另一种方式是块必须是哈希.

link_to "link",{ :controller => :my_controller,:action => :index },{ :class=>("on" if request.path =~ /\/my_controller/ ) }

如果你愿意,可以将它们全部放在一行上.

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...