有没有办法可以使用button_to控制按钮的类?
似乎 :class 似乎控制父窗体的类,而不是按钮本身。
我想将 btn Primary
类添加到按钮。
如果我不能直接做,我可以使用表单类和SASS来完成吗? (使用@extend或类似的东西)?
It seems that :class appears to control the class of the parent form, not the button itself.
I want to add the class btn primary
to the button.
If I can't do it directly, can I do it using the form class and SASS? (using @extend or something similar)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要确保
:class =>; “btn Primary”
是button_to
调用的第三个参数。如果你这样做:
你实际上是在说:
所以你应该将其更改为:
我尝试完全避免使用哈希值作为路径,并使用生成的路由方法。
You need to make sure that
:class => "btn primary"
is the third argument of thebutton_to
call.If you're doing this:
You are actually saying:
So you should change it to:
I try to avoid using hashes for paths altogether, and use the generated routing methods.
这应该可以做到
This should do it