如何用载波发送文件给用户?

发布于 2024-12-01 04:43:59 字数 388 浏览 1 评论 0原文

这是我向浏览器发送文件的旧代码:

def show
  send_file File.join(Rails.root, 'tmp', 'price.xls')
end

但最近我发现 tmp 文件夹不能用作 Heroku 上的持久存储,因此我决定将文件移动到 AWS S3。

这就是我到目前为止所得到的:

def show
  uploader = PriceUploader.new
  uploader.retrieve_from_store!('price.xls')
end

现在,如何将文件发送到浏览器?

upd

我故意没有安装上传器

Here's my old code to sends a file to the browser:

def show
  send_file File.join(Rails.root, 'tmp', 'price.xls')
end

But recently I've found out that tmp folder can't be used as a persistent storage on Heroku, so I decided to move the file to AWS S3.

That's what I've got so far:

def show
  uploader = PriceUploader.new
  uploader.retrieve_from_store!('price.xls')
end

Now, how do I send the file to the browser?

upd

I itentionally didn't mount the uploader

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

呆萌少年 2024-12-08 04:43:59

想通了。

def show
  uploader = PriceUploader.new
  uploader.retrieve_from_store!('price.xls')
  uploader.cache_stored_file!

  send_file uploader.file.path
end

Figured it out.

def show
  uploader = PriceUploader.new
  uploader.retrieve_from_store!('price.xls')
  uploader.cache_stored_file!

  send_file uploader.file.path
end
阳光下的泡沫是彩色的 2024-12-08 04:43:59

就我而言

# find  uploader ...

send_file(uploader.path,
         filename: uploader.filename,
         type: "application/<some-type>")

In my case

# find  uploader ...

send_file(uploader.path,
         filename: uploader.filename,
         type: "application/<some-type>")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文