我在 simple_form 中嵌入了一个 ajax link_to,如果表单脏了,我需要检查并显示消息,要求用户首先保存表单。
<%= simple_form_for(@thing) do |f| %>
<%= f.title %>
# many other form fields #
<%= f.button :submit %>
<%= link_to 'Publish', publish_thing_path(@thing), method: :put, remote: true %>
<% end %>
最好的方法是什么?
谢谢!