Django - 在模板中获取带索引的项目

时间:2017-12-19 14:16:39

标签: html django

在重定向到index.html时,我在参数中传递了topics变量:

def index(request):
    args={
        'user': request.user,
        'topics': Topic.objects.all(),
    }

    return render(request, 'index/index.html', args)

现在在模板中,我想从列表中获取第二个主题。尝试做像

{{topics.get(1)}}

{{topics}}.get(1)

这样做的正确方法是什么?

0 个答案:

没有答案