有没有办法可以使用button_to控制按钮的类?

发布于 2024-12-28 02:57:18 字数 135 浏览 0 评论 0原文

似乎 :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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧时光的容颜 2025-01-04 02:57:19

您需要确保 :class =>; “btn Primary”button_to 调用的第三个参数。

如果你这样做:

<%= button_to "Hello", :action => :new, :class => "btn primary" %>

你实际上是在说:

<%= button_to("Hello", { :action => :new, :class => "btn primary" }) %>

所以你应该将其更改为:

<%= button_to "Hello", { :action => :new }, :class => "btn primary" %>

我尝试完全避免使用哈希值作为路径,并使用生成的路由方法。

<%= button_to "Hello", new_hello_path, :class => "btn primary" %>

You need to make sure that :class => "btn primary" is the third argument of the button_to call.

If you're doing this:

<%= button_to "Hello", :action => :new, :class => "btn primary" %>

You are actually saying:

<%= button_to("Hello", { :action => :new, :class => "btn primary" }) %>

So you should change it to:

<%= button_to "Hello", { :action => :new }, :class => "btn primary" %>

I try to avoid using hashes for paths altogether, and use the generated routing methods.

<%= button_to "Hello", new_hello_path, :class => "btn primary" %>
烟织青萝梦 2025-01-04 02:57:19

这应该可以做到

<%= button_to 'New Job', {:controller => :jobs, :action => :new}, :class => 'btn primary' %>

This should do it

<%= button_to 'New Job', {:controller => :jobs, :action => :new}, :class => 'btn primary' %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文