如何在重定向后从模板中的会话中检索数据。实际上可能吗?
这是我的代码:
View.py:
if request.POST:
user = request.POST.get('username')
passw = request.POST.get('password')
#password1 = ''
try:
userdata = Employee.objects.get(username = user, password = passw)
user_id = request.session["user_id"] = userdata.id
employee_details = Employee.objects.get(id=user_id)
request.session['emp_details'] = employee_details
return HttpResponseRedirect('/home/')
except Employee.DoesNotExist:
state = "Username or password incorrect !"
return render_to_response('login.html',
{'username' : username1,'state' : state},
context_instance = RequestContext(request))
template:home.html
<body>
<p>
<ul>
<li><a href="">{{request.session.emp_details.emp_name}}</a></li>
</ul>
</p>
<p><a href="/logout/"><button>logout</button></a></p>
</body>
由于
答案 0 :(得分:5)
确保您已将django.core.context_processors.request添加到template context processors。然后,您可以像在代码中一样访问会话变量。
您可能需要在视图中添加以下行
request.session.modified = True
这取决于您的设置中是否有SESSION_SAVE_EVERY_REQUEST = True
。查看docs for saving sessions。
最后,请确保您将RequestContext对象传递到render_to_response
视图中的'/home/'
功能。 RequestContext
在模板上下文中包含request
对象(使其可以在{{ request }}
模板中访问。)
警告
虽然这可以帮助你让你的会话工作 - 我必须同意Daniel,你不应该像这样做用户身份验证。使用django's own authentication。