📢 공지사항
home
📌

18강 DB 정보 접근 및 장고 템플릿 내 for loop

DB에 저장된 정보들을 접근하고, 해당 정보들을 장고 템플릿 내에서 for 문을 통해 출력하는 방법을 배운다.
hello_world_list = HelloWorld.objects.all()
if request.method == “POST”:
return render(request, ‘accountapp/hello_world.html’, context={’hello_world_list ’: ‘hello_world_list })
else:
return render(request, ‘accountapp/hello_world.html’, context={’hello_world_list ’: hello_world_list })
hello_world_list = HelloWorld.objects.all()
return HttpResponseRedirect(reverse(’accountapp:hello_world’))