gpt4 book ai didi

python - 在 django-filer 的文件模型中使用属性而不是字段的理由是什么

转载 作者:太空宇宙 更新时间:2023-11-03 14:25:42 25 4
gpt4 key购买 nike

我尝试对扩展字段进行过滤,但正如以下示例所示,它实际上根本不是一个字段。对于这个例子,我们假设我们有一个正在运行的 Django,安装了 django-filer 并且已经上传了一些文件。

>>> from filer.models import File
>>> File.objects.all()[0].extension
'some_ext' # just as example

但是当尝试过滤时:

>>> File.objects.filter(extension='pdf')
django.core.exceptions.FieldError: Cannot resolve keyword 'extension'
into field. Choices are: _file_size, clipboarditem, description,
downloadfilemodel, file, filer_image_file, folder, folder_id,
has_all_mandatory_data, id, in_clipboards, is_public, modified_at,
name, news_attachment, original_filename, owner, owner_id,
polymorphic_ctype, polymorphic_ctype_id, sha1, uploaded_at

这是因为扩展不与模型一起存储,但实际上是计算属性。

我的问题:不将此元数据存储在文件模型中的理由是什么。

更新:我并不提示实现。我询问实现的可能动机。

最佳答案

扩展名不是非常重要的元数据,因为我们存储的是文件名。如果你看source code :

@property
def extension(self):
filetype = os.path.splitext(self.file.name)[1].lower()
if len(filetype) > 0:
filetype = filetype[1:]
return filetype

您可以看到存储扩展意味着我们正在复制已有的数据。因此决定将其设为属性(property)。

关于python - 在 django-filer 的文件模型中使用属性而不是字段的理由是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47650465/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com