《PHP编程:Django中的cookie与session操作实例代码》要点:
本文介绍了PHP编程:Django中的cookie与session操作实例代码,希望对您有用。如果有疑问,可以联系我们。
PHP实例添加cookie:
PHP实例 def login(req): if req.method=="POST": uf = UserInfoForm(req.POST) if uf.is_valid(): username = uf.cleaned_data["username"] password = uf.cleaned_data["password"] print username,password users = UserInfo.objects.filter(username=username,password=password) if users: response = HttpResponseRedirect("/index/") response.set_cookie("username",username,3600) return response else: return HttpResponseRedirect("/login") # return HttpResponseRedirect() else: uf = UserInfoForm() return render_to_response("login.html",{"uf":uf})
PHP实例获得cookie:
PHP实例 def index(req): username = req.COOKIES.get("username","")return render_to_response("index.html",{"username":username})
PHP实例删除cookie:
PHP实例 Response.delete_cookie("username")
PHP实例添加session:
PHP实例 def sesion(req): if req.method == "POST": uf = UserInfoForm(req.POST) if uf.is_valid(): username = uf.cleaned_data["username"] req.session["username"] = username return HttpResponseRedirect("/index/") else: uf = UserInfoForm() return render_to_response("LoadFile.html",{"uf":uf})
PHP实例获取session:
PHP实例 def index(req): username = req.session.get("username","") return render_to_response("index.html",{"username":username})
PHP实例删除session:
PHP实例 del req.session['username']
PHP实例总结
PHP实例以上所述是小编给大家介绍的Django中的cookie与session操作实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的.在此也非常感谢大家对脚本之家网站的支持!
转载请注明本页网址:
http://www.vephp.com/jiaocheng/280.html