我在模板里写了一个for循环 大概如下
{% for i in x %} {{ i.n }} {% endfor %}
现在我想直接用i.n的结果,类似于
{{ y }}.{{ i.n }}
我该怎么做?
谢谢