render_template

· Python
Flask를 사용한 프로젝트 진행 중 redirect와 render_template의 차이점에 의문이 생겼다 render_template는 redirect와 달리 render_template('index.html', id = user['id']) 와 같이 데이터를 줄 수 있는 것 말고는 다른 차이점을 알지 못했다 모르고 사용하기에는 너무 자주 사용하는 두 메서드의 차이점을 찾아보았다 [redirect] 해당 페이지에 다시 재접속을 하는 것이다 즉, 현재 요청된 연결을 특정 주소로 재연결 시킨다 http://localhost/index 라는 요청에서 redirect('main.html') 을 설정하면 http://localhost/main 로 접속이 되게 된다 보통 /index 주소에서 데이터를 처리하는 ..
Sungwoo Koo
'render_template' 태그의 글 목록