0

我在 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 %>

最好的方法是什么?

谢谢!

4

1 回答 1

0

我使用了一个名为 Are you sure

这非常简单,如果我检测到脏东西,我要么为他们提交,要么要求用户验证信息并提交。

https://github.com/codedance/jquery.AreYouSure

于 2013-09-16T19:58:22.287 回答