我有以下“示例”字典
myDict = {obj1:{key_a1:value_a1, key_a2:value_a2, key_a3:value_a3} ,
obj2:{key_b1:value_b1, key_b2:value_b2, key_b3:value_b3} ,
obj3:{key_c1:value_c1, key_c2:value_c2, key_c3:value_c3} }
其中 obj 是一些类对象。
如果我只想迭代属于键 obj2 的值怎么办,我将如何在模板中执行此操作?
我试过了
{% for node,manyResults in myDict[obj2].items %}
//Error: Could not parse the remainder: '[obj2].items' from 'dict[obj2].items'
和
{% for node,manyResults in myDict[obj2] %}
//Error: Could not parse the remainder: '[obj2]' from 'dict[obj2]'
和
{% for node,manyResults in myDict.obj2.items %}
//OR
{% for node,manyResults in myDict.obj2 %}
//Both no error, but the values don't appear
有没有办法做到这一点?