我可以在常规 python 中执行此操作,但在模板中似乎无法执行此操作。
这里是我的变量:
PropertyID = ['A1','A2','A3']
filePaths = {A1:'['file1.jpg','file2.jpg','file3.jpg',]', A2:'['file1.jpg','file2.jpg','file3.jpg']'}
我的模板:
{% for properties in PropertyID %}
{% for filePaths in imageFiles %}
{% for singleFiles in filePaths %}
{% endfor %}
{% endfor %}
{% endfor %}
我希望能够动态地遍历文件路径,但是当我尝试时:
{% for singleFiles in filePaths.{{properties}} %}
我收到一个错误:
<块引用>无法解析剩余部分:来自“filePaths.{{properties}}”的“{{properties}}”
我尝试过 filePaths['properties'] 和 filePaths[properties] 以及几乎所有的组合。我就是不明白为什么这不起作用。
如果我执行 filePaths.A1 它工作正常,但我不能以这种方式迭代其余的路径。
任何帮助将不胜感激,可能我错过了一些非常愚蠢的事情。
答案 0 :(得分:0)
您不能像那样访问字典键,而是可以在团队中使用 {% if %}
逻辑:
{% for properties in PropertyID %}
{% for filePaths in imageFiles %}
{% for propertyKey, singleFiles in filePaths.items %}
{% if propertyKey == properties %}
{% for singleFile in singleFiles %}
// your code
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}
仅供参考,最好在视图而不是模板中进行这些操作。