ActiveStorage::UnpreviewableError是Active Storage的一个异常类,用于指示预览失败的情况。该异常通常发生在无法预览某些类型的文件时抛出。
如果您在应用程序中使用Active Storage并且遇到此异常,请确保您正确配置了活动存储和文件预览。
以下是一个可能导致此异常的示例代码:
class User < ApplicationRecord
has_one_attached :avatar
validates :avatar, content_type: ['image/png']
end
在上面的代码中,我们使用Active Storage为用户模型添加一个附加的“avatar”文件,该文件必须是PNG格式图片。如果用户尝试上传不受支持的文件类型,将抛出ActiveStorage :: UnpreviewableError异常。
要解决此问题,您应该更改支持的文件类型,或者在文件上传前验证文件类型。例如,您可以使用MIME类型来验证文件类型:
class User < ApplicationRecord
has_one_attached :avatar
validate :acceptable_avatar
def acceptable_avatar
return unless avatar.attached?
acceptable_types = ['image/png', 'image/jpeg']
unless acceptable_types.include?(avatar.content_type)
errors.add(:avatar, "must be a PNG or JPEG")
end
end
end
在上面的代码中,我们使用了一种自定义验证器,该验证器允许接受PNG或JPEG格式的文件。 如果上传了不受支持的文件类型,则会在表单中显示此自定义错误消息。
通过这种方式,您可以捕获并处理ActiveStorage :: UnpreviewableError异常,以便在应用程序中提供更好的用户体验。