ActiveStorage :: SendZip 在Rails控制器中添加send_zip方法,以发送包含一个或多个对象的.zip文件。 用法 带Array 假设您具有带有ActiveStorage的ActiveRecord模型,如下所示: # app/models/user.rb class User < ApplicationRecord has_many_attached :pictures end 您只需在控制器中包括ActiveStorage::SendZip并使用ActiveStorage::SendZip#send_zip方法。 只需传递一些对象作为参数: #