【发布时间】:2012-02-19 14:50:06
【问题描述】:
我有一个带有 remote=>true 的按钮,它通过以下方式调用一个弹出窗口(一个 jquery 弹出窗口,而不是真正的弹出窗口):
$modal = $('#modal')
$modal_close = $modal.find('.close')
$modal_container = $('#modal-container')
$task_select_div = $('.activity_task_add')
# Handle modal links with the data-remote attribute
$('a[data-remote]').on 'ajax:success', (xhr, data, status) ->
$modal
.html(data)
.prepend($modal_close)
.css('top', $(window).scrollTop() + 150)
.show()
#This is the callback that is not being executed.
$('form[data-remote]').on 'ajax:success', (xhr, data, status) ->
alert(data)
$modal_container.hide()
$modal.hide()
$task_select_div.html(data)
在该弹出窗口中,我在此表单的提交按钮中有另一个带有 remote_tag 的表单,我调用和操作,底部有以下代码:
respond_to do |format|
if @task.save
format.html { redirect_to @task, notice: 'Task was successfully created.' }
format.json { render json: @task, status: :created, location: @task }
format.js {render :partial => 'tasks', :locals => {:tasks => current_user.department.tasks}}
else
format.html { render action: "new" }
format.json { render json: @task.errors, status: :unprocessable_entity }
end
end
它执行 format.js 并且控制台显示“Rendered tasks/_tasks.html.erb (5.8ms)”但 ajax 调用的回调不起作用。
$('form[data-remote]').on 'ajax:success', (xhr, data, status) ->
alert(data)
我需要接收 ajax:success 事件才能隐藏弹出窗口。 有什么帮助吗?
【问题讨论】:
标签: ruby ajax ruby-on-rails-3 coffeescript