Herramientas de usuario

Herramientas del sitio


wiki2:python:django:others

¡Esta es una revisión vieja del documento!


Other things for Django

Sessions

Add this to the config:

INSTALLED_APPS = [
    ...
    'django.contrib.sessions',
    ....
 
MIDDLEWARE = [
    ...
    'django.contrib.sessions.middleware.SessionMiddleware',
    ....

To use them:

# Get a session value by its key (e.g. 'my_car'), raising a KeyError if the key is not present
my_car = request.session['my_car']
# Get a session value, setting a default if it is not present ('mini')
my_car = request.session.get('my_car', 'mini')
# Set a session value
request.session['my_car'] = 'mini'
# Delete a session value 
del request.session['my_car']
wiki2/python/django/others.1550830859.txt.gz · Última modificación: 2020/05/09 09:24 (editor externo)