2013-08-29 80 views
3

我从我的数据库导出为XLS有点问题。 我用宝石to_xls与如下因素的文件后,我有这样的错误,我不知道怎么弄的平顺性和启动我的文件下载:Rails的send_data返回HTTP错误406

控制器:

def export 
    @subscribes = Subscribe.all 
    respond_to do |format | 
    format.xls { [email protected]_xls, disposition: 'attachment', : filename = > 'Subscribes.xls' } 
    end 
end 

我MIME文件

Mime::Type.register "application/vnd.ms-excel", :xls 

所以,我与全头得到了错误:

Request URL:https://localhost:3000/subscribes/export 
Request Method:GET 
Status Code:406 Not Acceptable 

Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 
Accept-Encoding:gzip,deflate,sdch 
Accept-Language:fr-FR,fr;q=0.8,en-US;q=0.6,en;q=0.4 
Connection:keep-alive 
Host:localhost:3000 
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36 

Cache-Control:no-cache 
Connection:close 
Content-Type:text/html; charset=utf-8 
Server:thin 1.5.1 codename Straight Razor 
Strict-Transport-Security:max-age=31536000 
X-Request-Id:a5be7889994f1035818d6a554f991636 
X-Runtime:0.012001 
X-UA-Compatible:IE=Edge 

谢谢你帮助我:)

回答

1

由于您使用format.xls,你必须要追加.xls到的URL。尝试

curl -v https://localhost:3000/subscribes/export.xls 

否则,你可以移动send_datarespond_to块。

+0

非常感谢! – Nox