2013-07-18 77 views

回答

1

只要設置了內容類型,就像發送文件內容一樣簡單。

content_type "text/plain" 
File.read(...) 
2

我得到utf8字符轉換,如果我沒有設置 'api_format'

if file_path && File.exists?(file_path) 
    data = File.open(file_path, 'rb').read 

    header "Content-Disposition:", " infile; filename=\"#{File.basename(file_path)}\"" 
    content_type 'application/x-gzip' 

    env['api.format'] = :binary 

    present data 
end 

這是對葡萄0.4.1

相關問題