我有一个使用 hvad 包的多语言领域。我有一个像下面这样的脚本,我用它来做美味的脱水。
array = []
for t in bundle.obj.facilities.filter(foo_type = i.foo_type):
for field in get_translatable_fields(t.foo_type.__class__):
for translation in t.foo_type.translations.all():
value = getattr(translation, field)
array.append(value)
print array
但是我在同一个列表中获得了所有语言翻译。你有什么想法让不同的列表属于不同的语言。
我只想在for translation in ....
迭代过程中有不同的数组