我不想在浏览器中显示由 index.api.rsb 文件呈现的 xml 文件,而是想下载它。对我来说,这听起来很简单,但我找不到解决方案。
我在控制器方法中尝试了以下内容:
def split
if params[:export] == "yes"
send_file *here comes the path to xml view*, :filename => "filename", :type => :xml
end
respond_to ...
end
结果是 MissingFile 异常...
提前致谢