Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用回形针来管理附件。这适用于用户上传文件时,但我们有一个功能,用户可以从我们系统上的图像中进行选择,该图像位于与回形针不同的目录中。
一旦他们从我们的系统中选择了该图像,我如何让回形针从那里处理和处理图像?
Paperclip 有一个File对象适配器,因此假设您从用户输入中获得了文件的完整路径,您可以创建一个新File对象,然后将其传递给目标模型中的附件属性并正常保存所有内容。
File
file = File.new(file_path_from_user_input) user.attachment = file user.save