redirect 기능
장고의 redirect 의 기능Django 에서 reidrect 기능이 어떻게 구현되는지 코드 및 사이트를 참고하여 정리 - redirect 를 한다는 것 def redirect(to, *args, permanent=False, **kwargs): """ Return an HttpResponseRedirect to the appropriate URL for the arguments passed. # 전달 된 인수에 대해 적절한 URL로 HttpResponseRedirect를 반환합니다.. The arguments could be: # 인수는 다음과 같다. * A model: the model's `get_absolute_url()` function will be called. # 모델의 'get_abso..