在django模板中为变量嵌套for循环

时间:2018-05-04 11:14:36

标签: django django-templates

 <tbody>
        {% for j in dat %}
        <tr>
            {%for h in hed %}
            <td>{{j.h}}</td>
            {% endfor %}
        </tr>
        {% endfor %}
    </tbody>

希望通过模型中的object.field_name获取值。我已经尝试了{{j}}。{{h}}但它没有返回值而是返回obj1.field_name。我应该尝试的任何可能的方法。

0 个答案:

没有答案