我需要下载二进制数据。我已经尝试过send_data
方法,但它保存了整个.html 页面。我无法访问send_data
控制器之外的方法,所以我在应用控制器中声明了 helper_method。
class ApplicationController < ActionController::Base
protect_from_forgery
helper_method :save_data
def save_data
send_data('Hello, pretty world :(', :type => 'text/plain', :disposition => 'attachment', :filename => 'hello.txt')
end
end
我做错了什么?谢谢你。