昨日回顾: 昨日回顾: auth组件: -验证:authenticat(request,username=') -登录:login(request,user) -注销:logout(request),内部调用了flush(),以后再从request中取user,是匿名用户 -request.user:请求来了,在中间件中,通过cookie查询user信息,放到request.user中,如果查询不到,把匿名用户赋给它 -登录认证装饰器:login_required(指定?后面拼接的key值,如果…