在我的应用程序中,用户可以使用Carrierwave上传多个图像。这些图像与Fotorama库一起显示。
我想添加一项功能,让用户可以按照自己喜欢的方式对图像进行排序。
目前我正在使用带有JSON列的PostgreSQL,就像在gem的文档中一样。图片路径如下:
我的代码:
格式:
<%= f.file_field :imagens, multiple: true, class: "float-left" %>
在模型中
class Product < ApplicationRecord
mount_uploaders :imagens, ImagemUploader
end