在重定向到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)
这样做的正确方法是什么?