我有一个 Rails 3.2 应用程序,它使用 Paperclip 在一个字段中附加多个图像。
所以,我有一个 Post 模型和一个 Image 模型。
我的问题是:如何像回形针的大小验证一样验证图像的数量?
谢谢!
我有一个 Rails 3.2 应用程序,它使用 Paperclip 在一个字段中附加多个图像。
所以,我有一个 Post 模型和一个 Image 模型。
我的问题是:如何像回形针的大小验证一样验证图像的数量?
谢谢!
S0 我假设一个帖子 has_many Images。
您可以尝试验证保存时的图像数量,如下所示(此代码尚未经过测试!):
class Post
has_many :images
validate_on_create :images_limit
private
def images_limit
return if images.blank?
errors.add("You have reached the image limit") if images.length > 10
end
end
class Image
belongs_to :post
validates_associated :post
end