编辑
我试图在Rails中添加一个带有button_to的类,但我一直遇到语法错误。这就是我所拥有的:
<%= button_to "Update this task", user_task_path(current_user, task), method: "patch", remote: true, {class: "update"} %>
我试着把各种各样的东西放进牙套里或放出来,但我无法让它发挥作用。有什么想法吗?
尝试使用form_class(它将为您分配类)
<%= button_to "Update this task", user_task_path(current_user, task), method: "patch", remote: true, form_class: "update" %>
如果做不到这一点,一个更冗长的解决方案。。。
<%= button_to user_task_path(current_user, task), {method: "patch", remote: true}, {class: "update"} do %>
Update this task
<% end %>