DB에 쌓이는 리스트, 객체를 모두 긁어오자
HelloWorld의 모든 데이터를 긁어와서 display
hello_world_list = HelloWorld.objects.all()
HelloWorld의 모든 데이터를 긁어와서 hello_world_list에 저장
return render(request, 'accountapp/hello_world.html', context={'hello_world_list': hello_world_list})
hello_world_list를 또 반환
hello_world_list라는 이름에 hello_world_list object를 담아서 반환
post 말고 get에서도 같은 실행을 시켜주자
accountapp 폴더 > hello_world.html
hello_world_list라고 바꿔준다.
받아온 object 그 자체 한 다발
if와 for문을 이용해서 각자의 객체를 접근
hello_world 내의 text
단순히 get post로만 주소로 돌아갈 수 있게 함수를 되돌려주자
return HttpResponseRedirect(reverse('accountapp:hello_world'))
import는 django로 선택 accountapp 내부에 있는 hello_world에 재접속해라
영상에서 처럼 디버깅을 쳤을 때,, 아무런 반응이 없고 원래처럼 객체로만? 되는 것 같아유..