We can save that in any django model in ajax() request if possible. You can check if you have modified `SESSION_COOKIE_AGE` ( https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-SESSION_COOKIE_AGE ) if it is too less that might be the reason.
On Fri, 3 Dec 2021 at 16:15, kayhan <[email protected]> wrote: > Hi > I first send a request to Django and save its data with a session. > I will send another request to Django later. Here I want to use the data > of the previous request. > But my code does not work properly. And the value "None" appears in the > output. > Does anyone know what I should do? > Thankful > > def planing(request): if request.is_ajax(): # Get user location from user > location.js file: latitude = request.POST.get('latitude', None) longitude > = request.POST.get('longitude', None) print("latitude, longitude = ", > latitude,longitude) # To save data request.session['latitude'] = latitude > request.session['longitude'] = longitude # To retrive data: latitude = > request.session.get('latitude') longitude = request.session.get( > 'longitude') print("latitude, longitude = ", latitude,longitude) elif > request.method == "GET": return render(request, "tourist/planing.html") > elif request.method == "POST": # To retrive data: latitude = > request.session.get('latitude') longitude = request.session.get( > 'longitude') print("latitude, longitude = ", latitude,longitude) Output: > latitude, longitude = 34.801595 48.499574 latitude, longitude = 34.801595 > 48.499574 latitude, longitude = None None > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/4bef9d07-cd92-440a-8ec0-dd4c206e6ae7n%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/4bef9d07-cd92-440a-8ec0-dd4c206e6ae7n%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAGp2JVEkLiwVEAF3uV%3DBBOQJuUwVBaQGhD7RA7t0aDirh%2BD-ZQ%40mail.gmail.com.

