所以我有一个应用程序,用户可以上传视频和.vtt字幕文件。
我遇到的问题是,在尝试上传.vtt文件时收到以下错误消息:
Caption has an extension that does not match its contents
Caption is invalid
Caption content type is invalid
以下是我对该字段的验证,我已经包含了#text / vtt'格式,问题是什么?
validates_attachment_content_type :caption, :content_type => ['application/txt', 'text/plain', 'text/vtt']