How to access stored user data in django?Does Django scale?How to expire session due to inactivity in Django?Separation of business logic and data access in djangoDjango session expires at browser close OR after timeDjango 1.5 Session Key is NoneDjango unique=True not workingUse Django sessions in URLdjango request.session throws Attribute errorHow to access session variable in child template in Django?How to save user session data which is appended list in django?
How does noise-cancellation work in Mac laptops?
What does i386 mean on macOS Mojave?
Extrude the faces of a cube symmetrically along XYZ
Python Pandas Expand a Column of List of Lists to Two New Column
Page contents aligning weirdly in LaTeX/Overleaf
Why was Endgame Thanos so different than Infinity War Thanos?
Smallest Guaranteed hash collision cycle length
Is it a bad idea to replace pull-up resistors with hard pull-ups?
Can 'sudo apt-get remove [write]' destroy my Ubuntu?
On what legal basis did the UK remove the 'European Union' from its passport?
Is taking modulus on both sides of an equation valid?
Proof that the inverse image of a single element is a discrete space
Why was Thor doubtful about his worthiness to Mjolnir?
Why not just directly invest in the holdings of an ETF?
Light Switch Terminals
What is Plautus’s pun about frustum and frustrum?
How to minimise the cost of guessing a number in a high/low guess game?
Extracting sublists that contain similar elements
Plastic-on-plastic lubricant that wont leave a residue?
How to compact two the parabol commands in the following example?
What's the difference between a Bunsen burner and a gas stove?
What stroke width Instagram is using for its icons and how to get same results?
Ex-manager wants to stay in touch, I don't want to
How did Thanos not realise this had happened at the end of Endgame?
How to access stored user data in django?
Does Django scale?How to expire session due to inactivity in Django?Separation of business logic and data access in djangoDjango session expires at browser close OR after timeDjango 1.5 Session Key is NoneDjango unique=True not workingUse Django sessions in URLdjango request.session throws Attribute errorHow to access session variable in child template in Django?How to save user session data which is appended list in django?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I'm new to django, especially the storing of user data. Basically, I want to save user data searches. They put in a query into a search_bar and I want to save that query. I'm trying to create a list for each user with their search queries at user['search'] and the results of these queries at user['results']. However, I added some code and it does not seem to save the results.
Here is my code for user['results']. It's the same as for user['search']. I'm trying to save the query results by using request.session['result'] = query_result. The reason the results are not obvious is that they make a few choices between entering the query and seeing results.
from django.contrib.sessions.models import Session
request.session.modified = True
object_save = list(_objs.values('service__code'))
if not 'result' in request.session or not request.session['result']:
renderequest.session['result'] = [object_save]
request.session.save()
else:
result_list = request.session['result']
result_list.append(object_save)
request.session['result'] = result_list
request.session.save()
I'd expect this to be able to save and I can look at the searches in python manage.py shell.
When I try to pull all the session data with s = Session.object.get(pk='pk') and s['result'] I get nothing. s has no attribute 'result' is the error.
Maybe I'm completely not understanding user sessions, please help.
django session session-cookies session-storage
add a comment |
I'm new to django, especially the storing of user data. Basically, I want to save user data searches. They put in a query into a search_bar and I want to save that query. I'm trying to create a list for each user with their search queries at user['search'] and the results of these queries at user['results']. However, I added some code and it does not seem to save the results.
Here is my code for user['results']. It's the same as for user['search']. I'm trying to save the query results by using request.session['result'] = query_result. The reason the results are not obvious is that they make a few choices between entering the query and seeing results.
from django.contrib.sessions.models import Session
request.session.modified = True
object_save = list(_objs.values('service__code'))
if not 'result' in request.session or not request.session['result']:
renderequest.session['result'] = [object_save]
request.session.save()
else:
result_list = request.session['result']
result_list.append(object_save)
request.session['result'] = result_list
request.session.save()
I'd expect this to be able to save and I can look at the searches in python manage.py shell.
When I try to pull all the session data with s = Session.object.get(pk='pk') and s['result'] I get nothing. s has no attribute 'result' is the error.
Maybe I'm completely not understanding user sessions, please help.
django session session-cookies session-storage
I don't understand your question. Where are you doings = Session.object.get(pk='pk')
, and more to the point, why? You should access sessions in the same way you store them, viarequest.session
.
– Daniel Roseman
Mar 23 at 12:43
I'm trying to build a database of user searches and results to improve my search functionality, so I want them saved and to be able to work with the data later outside of the running application.
– J R
Mar 23 at 16:02
add a comment |
I'm new to django, especially the storing of user data. Basically, I want to save user data searches. They put in a query into a search_bar and I want to save that query. I'm trying to create a list for each user with their search queries at user['search'] and the results of these queries at user['results']. However, I added some code and it does not seem to save the results.
Here is my code for user['results']. It's the same as for user['search']. I'm trying to save the query results by using request.session['result'] = query_result. The reason the results are not obvious is that they make a few choices between entering the query and seeing results.
from django.contrib.sessions.models import Session
request.session.modified = True
object_save = list(_objs.values('service__code'))
if not 'result' in request.session or not request.session['result']:
renderequest.session['result'] = [object_save]
request.session.save()
else:
result_list = request.session['result']
result_list.append(object_save)
request.session['result'] = result_list
request.session.save()
I'd expect this to be able to save and I can look at the searches in python manage.py shell.
When I try to pull all the session data with s = Session.object.get(pk='pk') and s['result'] I get nothing. s has no attribute 'result' is the error.
Maybe I'm completely not understanding user sessions, please help.
django session session-cookies session-storage
I'm new to django, especially the storing of user data. Basically, I want to save user data searches. They put in a query into a search_bar and I want to save that query. I'm trying to create a list for each user with their search queries at user['search'] and the results of these queries at user['results']. However, I added some code and it does not seem to save the results.
Here is my code for user['results']. It's the same as for user['search']. I'm trying to save the query results by using request.session['result'] = query_result. The reason the results are not obvious is that they make a few choices between entering the query and seeing results.
from django.contrib.sessions.models import Session
request.session.modified = True
object_save = list(_objs.values('service__code'))
if not 'result' in request.session or not request.session['result']:
renderequest.session['result'] = [object_save]
request.session.save()
else:
result_list = request.session['result']
result_list.append(object_save)
request.session['result'] = result_list
request.session.save()
I'd expect this to be able to save and I can look at the searches in python manage.py shell.
When I try to pull all the session data with s = Session.object.get(pk='pk') and s['result'] I get nothing. s has no attribute 'result' is the error.
Maybe I'm completely not understanding user sessions, please help.
django session session-cookies session-storage
django session session-cookies session-storage
asked Mar 23 at 12:05
J RJ R
5918
5918
I don't understand your question. Where are you doings = Session.object.get(pk='pk')
, and more to the point, why? You should access sessions in the same way you store them, viarequest.session
.
– Daniel Roseman
Mar 23 at 12:43
I'm trying to build a database of user searches and results to improve my search functionality, so I want them saved and to be able to work with the data later outside of the running application.
– J R
Mar 23 at 16:02
add a comment |
I don't understand your question. Where are you doings = Session.object.get(pk='pk')
, and more to the point, why? You should access sessions in the same way you store them, viarequest.session
.
– Daniel Roseman
Mar 23 at 12:43
I'm trying to build a database of user searches and results to improve my search functionality, so I want them saved and to be able to work with the data later outside of the running application.
– J R
Mar 23 at 16:02
I don't understand your question. Where are you doing
s = Session.object.get(pk='pk')
, and more to the point, why? You should access sessions in the same way you store them, via request.session
.– Daniel Roseman
Mar 23 at 12:43
I don't understand your question. Where are you doing
s = Session.object.get(pk='pk')
, and more to the point, why? You should access sessions in the same way you store them, via request.session
.– Daniel Roseman
Mar 23 at 12:43
I'm trying to build a database of user searches and results to improve my search functionality, so I want them saved and to be able to work with the data later outside of the running application.
– J R
Mar 23 at 16:02
I'm trying to build a database of user searches and results to improve my search functionality, so I want them saved and to be able to work with the data later outside of the running application.
– J R
Mar 23 at 16:02
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313550%2fhow-to-access-stored-user-data-in-django%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313550%2fhow-to-access-stored-user-data-in-django%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I don't understand your question. Where are you doing
s = Session.object.get(pk='pk')
, and more to the point, why? You should access sessions in the same way you store them, viarequest.session
.– Daniel Roseman
Mar 23 at 12:43
I'm trying to build a database of user searches and results to improve my search functionality, so I want them saved and to be able to work with the data later outside of the running application.
– J R
Mar 23 at 16:02