【发布时间】:2023-03-28 05:19:01
【问题描述】:
我对内容类型进行了此验证:
validates_attachment_content_type :photo, :content_type => /^image\/(jpg|jpeg|pjpeg|png|x-png|gif)$/, :message => 'file type is not allowed (only jpeg/png/gif images)'
我只想显示上面的消息,但它却说
Photos photo content type file type is not allowed (only jpeg/png/gif images)
因为它是照片模型和附件照片。
谢谢
【问题讨论】:
标签: ruby-on-rails paperclip paperclip-validation