要确保ActiveStorage::Blob对象的analyzed
元数据始终包含width
和height
属性,可以使用Rails回调和条件语句来实现。以下是一个示例解决方案:
# app/models/attachment.rb
class Attachment < ApplicationRecord
has_one_attached :file
after_save :ensure_analyzed_metadata
private
def ensure_analyzed_metadata
if file.attached? && file.analyzed?
metadata = file.metadata
# 检查`width`和`height`属性是否存在
unless metadata.key?(:width) && metadata.key?(:height)
# 使用`analyze`方法重新分析文件
file.analyze
end
end
end
end
在上面的示例中,我们定义了一个名为Attachment
的模型,并在其中定义了一个file
附件。我们使用after_save
回调来确保在保存附件后触发ensure_analyzed_metadata
方法。
在ensure_analyzed_metadata
方法中,我们首先检查附件是否已经附加且已经分析。然后,我们检查metadata
哈希是否包含width
和height
键。如果缺少其中一个或两个键,我们使用analyze
方法重新分析文件。
通过这种方式,我们可以确保analyzed
元数据始终包含width
和height
属性。
上一篇:ActiveStorage::Blob.find_signed 不能捕获 StandardError。
下一篇:ActiveStorage::Current.host=已被弃用,我该如何使用ActiveStorage::Current.url_options?