我正在尝试使用jQuery和Ajax提交Rails表单,但它不起作用,我不知道为什么。我意识到有remote: true
使用AJAX做事情,但这在我的情况下是不够的,因为我想在点击提交按钮时执行其他jQuery操作,并提供关于动作状态的良好反馈,即成功和失败。这是我目前拥有以下形式的代码:
<%= form_for @mail, id: "mail-form", url: subscription_mail_create_recipients_path(@mail) do |f| %>
<strong>Choose the users you want to target..</strong><br/>
<%= f.check_box :target_users %> Users
<div class="actions">
<a id="save-config" class="btn btn-primary purple-button">Save configuration</a>
</div>
<% end %>
jQuery:
$('#save-config').click(function(){
$('#mail-form').submit(function() {
var valuesToSubmit = $(this).serialize();
console.log(valueToSubmit);
$.ajax({
url: $(this).attr('action'), //sumbits it to the given url of the form
data: valuesToSubmit,
dataType: "JSON" // you want a difference between normal and ajax-calls, and json is standard
}).success(function(json){
//act on result.
});
alert("method failed");
return false; // prevents normal behaviour
});
});
我想在这里解决这个例子Submit form in rails 3 in an ajax way (with jQuery)
我没有提交按钮,是不是因为它无法正常工作?任何帮助将不胜感激。
答案 0 :(得分:1)
您的代码确实定义了提交表单时要执行的功能。它会对按钮上的每次点击执行此操作。但你想要的是每次点击提交表格的内容。请尝试以下方法:
$('#save-config').click(function(){
var valuesToSubmit = $('#mail-form').serialize();
console.log(valueToSubmit);
$.ajax({
url: $('#mail-form').attr('action'), //sumbits it to the given url of the form
data: valuesToSubmit,
dataType: "JSON" // you want a difference between normal and ajax-calls, and json is standard
}).success(function(json){
//act on result.
});
return false; // prevents normal behaviour
});