在 controller 中是这样的:
response.headers['Cache-Control'] = 'public, max-age=2592000'
response.headers['Content-type'] = 'image/jpeg'
send_file(
filepath,
:filename => @attachment.name,
:type => @attachment.content_type
)
我希望在附件是图片的时候,打开这个网址,直接在浏览器中显示图片,而不是像其它文件一样直接下载下来