rails 下载中文文件乱码的解决方法

下载的文件名如果是中文的,在ie浏览器下文件名会是乱码。

解决方法如下

respond_to do |format|
filename = CGI::escape(“中文.xls")
format.xls {send_data((render_to_string file:"reports/export_exe") ,filename:filename, :disposition => 'attachment') }
end

posted on 2014-01-20 14:44  leonworld2011  阅读(583)  评论(0)    收藏  举报

导航