작성
·
214
0
헷갈릴까바 일부로 이름을 다르게 가져갔는데
Httpresponseredirect와 render의 경로 참조방법이 헷갈립니다.
질문1. Httpresponseredirect의 ':' 는 어떤걸까요?
views.py에서 아래와 같이 실행했습니다.
return HttpResponseRedirect(reverse('Account_app:hello_world'))
else:
hello_world_list = HelloWorld.objects.all()
return render(request, 'accountapp/hello_world.html', context={'hello_world_list': hello_world_list})
답변