我正在使用Remotipart上传文件。 Rails-Controller处理文件,但我无法弄清楚如何获得以下ajax响应。这是我的js代码。
$file.children(".description").html(
'<%= form_for FileObject.new, :url => file_object_index_path , :html => { :multipart => true }, :remote => true do |f| %>' +
'<div class="field">' +
'<%= f.label :file %>' +
'<%= f.file_field :file %>'+
'</div>' +
'<input type="hidden" name="directory_object_id" value="' + current_directory.id +'" />' +
'<div class="actions">' +
'<%= f.submit %>' +
'</div>' +
'<% end %>'
);
$("form").bind('ajax:success', function(){
alert("success");
});
也许有人之前已经解决了这个问题。
答案 0 :(得分:5)
不要绑定到ajax:success
,请尝试以下操作:
$("form").bind("ajax:complete", function(e, data, status, error){
if (data.status === 200 || data.status === 201) {
...
}
})
在使用remotipart时我无法绑定ajax支持,并且过去曾使用过上述解决方法。