Django - session 처리 방법
간단한 세션 처리 방법을 정리해 두자. 원본 글은 여기 https://www.programink.com/django-tutorial/django-session.html Django Tutorial | Django Session & Login Session Learn Django Session variable and server side caching with this Django Session Tutorial. www.programink.com 예제 샘플은 다음과 같다. 쉽네 request.session["키워드"] 이렇게 쓰고, 읽으면 된다. from django.shortcuts import render from django.http import HttpResponse def setsession(re..