我有一个使用 Paperclip 4.3.2 的 Rails 4 应用程序。我的模型中指定了以下内容:
validates_attachment_content_type :avatar, :content_type => /\Aimage\/.*\Z/, :message => "some message"
当我尝试加载错误的文件时,我希望找到消息“一些消息”,但我收到了消息:
缺少头像翻译:ca.activerecord.errors.models..attributes.avatar.spoofed_media_type
知道这里出了什么问题吗?