我正在尝试在 Rails 中添加一个带有 button_to 的类,但我不断收到语法错误。这就是我所拥有的:
<%= button_to "Update this task", user_task_path(current_user, task), method: "patch", remote: true, {class: "update"} %>
我尝试过将各种东西放入和取出牙套,但我无法让它发挥作用。有任何想法吗?
我正在尝试在 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 %>