ruby 代码如下。
send_file "#{Rails.root}/public/aaa.apk", filename: 'aaa.apk', disposition: 'attachment', :type=>"application/octet-stream;charset=utf-8"
api 中有提到两种方式
:disposition - specifies whether the file will be shown inline or downloaded. Valid values are 'inline' and 'attachment' (default).
我 disposition 设置为下载模式。。在 pc 端打开是可以正常下载, 当我用手机浏览器打开的时候为什么是现实的原文件。。手机中需要设置什么才能让它是直接下载呢?