S3、Paperclip、Heroku 和 iPhone 应用程序

发布于 2024-10-20 01:18:04 字数 180 浏览 1 评论 0原文

Paperclip 是否在数据库中存储 S3 存储桶的路径 url?我正在尝试在我的 iPhone 应用程序中引用该图像,并且需要将图像(个人资料图片)上传到手机。

我是否获取 User.image_url (文件的路径)并以这种方式拉取它。或者我是否提取实际图像的 BLOB(假设 Paperclip 将图像存储为 Blob)。

Does Paperclip store url of the path to the S3 bucket in the db? I am trying to reference the image in my iPhone app and need to upload the image (profile pic) to the phone.

Do I get User.image_url (a path to the file) and pull it in that way. Or do I pull a BLOB of the actual image (assuming Paperclip stores the image as a blob).

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

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

发布评论

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

评论(1

月牙弯弯 2024-10-27 01:18:04

是的,它将它存储在数据库中。

User.image(:large)

您需要声明一个大小,这就是填充 URL 的方式:

has_attached_file :avatar, :styles => { :large=> "300x300>", :thumb => "100x100>" }

Yes, it stores it in the db.

User.image(:large)

You need to declare a size and that is how the URL will get populated:

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