使用 Carrier wave 将文件从一个上传器类保存到另一个上传器类

发布于 2024-10-19 18:59:51 字数 70 浏览 1 评论 0原文

如何在不使用表单的情况下将图像文件保存到 Carrier Wave 中的上传器类?

我想改用系统中已有的图像。

How do i save image files to an uploader class in carrier wave without the use of a form?

I want to instead use an existing image that's already in the system.

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

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

发布评论

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

评论(1

财迷小姐 2024-10-26 18:59:51

假设它是一个名为 image 的模型,并且上传器安装为 Carrierwave:

image.carrierwave.store!(File.new("/tmp/image.png"))
image.write_carrierwave_identifier
image.save

store!接受 File、IOString 或 Tempfile。

Assuming it's a model called image and the uploader is mounted as carrierwave:

image.carrierwave.store!(File.new("/tmp/image.png"))
image.write_carrierwave_identifier
image.save

store! accepts a File, IOString or Tempfile.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文