yuchao 发表于 2018-2-11 11:50:21


            添加cookie:
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})
页: [1]
查看完整版本: Django中的cookie与session操作实例代码