在Rails 4中,我试图在一个循环内的一个按钮上添加一个CSS类,就像在Active Admin Dashboard上一样
button_to "Block", action: :block_cars, controller: :companies, id: company
然而,这似乎不起作用:
button_to "Block", :class => 'dangerbtn', action: :block_cars, controller: :companies, id: company
非常感谢任何帮助,谢谢。
答案 0 :(得分:1)
class
是一个HTML选项,但您可以在选项哈希中使用它。请尝试这样:
button_to "Block", {action: :block_cars, controller: :companies, id: company}, {:class => 'dangerbtn'}
button_to
的格式为:
button_to(name = nil, options = nil, html_options = nil, &block)
有关详细信息,请参阅the API。