我有一个加载窗口的jquery AJAX调用。在窗口中,有一个带有提交的表单,允许用户下载项目。 我必须使用常规提交这个第二个表单,以便我可以提示下载。
我的问题是当没有文件要下载时,它会重定向到该文件所在的页面
我正在尝试许多不同的风格,让它什么都不做,但它们似乎都没有效果。
unless params[:controller] == "reports"
unless @jobs.present?
flash.now[:error] = "No work orders for this selection."
render :nothing => true
end
end
另外
respond_to do |format|
format.html { render :nothing => true }
end
似乎没什么用。有什么想法吗?
答案 0 :(得分:18)
不要使用render: nothing.
这将"失败" ajax请求。
相反,使用:
render json: nil, status: :ok