Rails 中的图像上传

发布于 2024-07-23 22:36:29 字数 79 浏览 4 评论 0原文

如何在 RoR 中上传图像和 zip 文件? 我是新手。 所以请帮忙。 给我视图和控制器代码示例。

提前致谢。

How do I upload images and zip files in RoR? I am a newbie. So please help.
Give me both the view and the controller code example.

Thanks in advance.

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

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

发布评论

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

评论(7

小ぇ时光︴ 2024-07-30 22:36:29

ImageMagick 也很酷

ImageMagick is also pretty cool

巨坚强 2024-07-30 22:36:29

我会推荐回形针,以及允许您将内容存储在数据库而不是文件系统中的补丁

http ://patshaughnessy.net/paperclip-database-storage

该链接包含您正在寻找的视图和控制器示例

I would recommend paperclip, and the patch that allows you to store the content in the database instead of the file system

http://patshaughnessy.net/paperclip-database-storage

the link has the view and controller examples that you are looking for

我纯我任性 2024-07-30 22:36:29

我更喜欢Carrierwave,因为它可以轻松上传图像。
这是 github 页面railscasts 页面 用于快速启动。

I prefer carrierwave is better to upload images easily.
Here's github page , and railscasts page for quick start.

旧夏天 2024-07-30 22:36:29

一种选择是 attachment_fu。 它允许您将上传的文件保存到文件系统、数据库或 Amazon S3。 它还允许您选择使用哪个图像处理器,例如 RMagick 或 Minimagick。

该链接提供了比我在这里提供的更好的代码。

One option is attachment_fu. It allows you to save your uploaded file to the filesystem, database, or Amazon S3. It also allows you to select which image processor is used, such as RMagick or Minimagick.

The link provides better code than I could here.

以酷 2024-07-30 22:36:29

导航,

尝试回形针插件,您可以在这里阅读它 http://www.thoughtbot.com/projects/回形针

Nav,

Try the paperclip plugin, you can read about it here http://www.thoughtbot.com/projects/paperclip

桃扇骨 2024-07-30 22:36:29

我们更喜欢 CarrierWave 在 Rails 中上传图像。 非常容易集成并且非常模块化。
以下文章介绍了使用 CarrierWave 上传图像的解决方案,同时图像转换在云中无缝完成。 上传的图像存储在云端并通过 CDN 传送。
无需安装 RMagick、MiniMagick 和 ImageMagick。

We prefer CarrierWave for image uploads in Rails. Very easy to integrate and very modular.
The following post describes a solution for image uploading using CarrierWave while image transformations are done seamlessly in the cloud. Uploaded images are stored in the cloud and delivered through a CDN.
No need to install RMagick, MiniMagick and ImageMagick.
http://cloudinary.com/blog/ruby_on_rails_image_uploads_with_carrierwave_and_cloudinary

So尛奶瓶 2024-07-30 22:36:29

建议查看 Railscast 的 paperclip

suggest checking out the Railscast for paperclip.

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