我对内容类型进行了此验证:
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)
因为它是照片模型和附件照片。
谢谢