gpt4 book ai didi

python - 迭代并格式化模板过滤器返回的字典

转载 作者:行者123 更新时间:2023-12-01 08:01:21 25 4
gpt4 key购买 nike

我正在尝试在 Django 应用程序中显示有关图像的元数据。元数据从图像的 exif header 中读取并存储在以图像为键的字典中,并通过过滤器返回到模板。在我的模板中,我显示图像,并希望显示该图像的格式化元数据。到目前为止,我只能让它显示该图像的字典(例如 {'key1': 'value', 'key2', 'value'})。我希望它看起来像 key1: value, key2: value

#template.html
{% block content %}
{% for image in images %}
{{ exif|get_item:image }}
<p><img src="{{ image.image.url }}" width="500" style="padding-bottom:50px"/></p>
{% endfor %}
{% endblock %}


#views.py
def image_display(request):
images = image.objects.all()

exif = {}
for file in images:
cmd = 'exiftool ' + str(file.image.url) + ' -DateTimeOriginal -Artist'
exifResults = (subprocess.check_output(cmd)).decode('utf8').strip('\r\n')
exif[file] = dict(map(str.strip, re.split(':\s+', i)) for i in exifResults.strip().splitlines() if i.startswith(''))

context = {
'images': images,
'exif': exif,
}

@register.filter
def get_item(dictionary, key):
return dictionary.get(key)
return render(request, 'image_display.html', context=context)

我以为我可以在模板中执行 {% for key, value in exif|get_item:image.items %} ,但这会返回错误:

VariableDoesNotExist at /reader/image_display
Failed lookup for key [items] in <image: image1>

有没有办法可以格式化过滤器返回的字典或迭代它,以便我可以格式化每个键和值对?

最佳答案

据我所知,您正在使用此问题的自定义过滤器实现:Django template how to look up a dictionary value with a variable但您需要额外的步骤来格式化特定的键,因为它是字典。

为什么不创建另一个可以返回您想要的格式的字典的过滤器?
像这样的事情:

@register.filter
def get_item_formatted(dictionary, key):
tmp_dict = dictionary.get(key, None)
if tmp_dict and isinstance(tmp_dict, dict):
return [[t_key, t_value] for t_key, t_value in tmp_dict.items()]
return None

这将返回[key, value]对或None的列表。
您可以在模板中迭代它:

{% block content %}
{% for image in images %}
{% for pair in exif|get_item_formatted:image %}
// Do what you need with the pair.0 (key) and pair.1 (value) here.
{% endfor %}
{% endfor %}
{% endblock %}

关于python - 迭代并格式化模板过滤器返回的字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55715587/

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