1. 首页
  2. 数据库
  3. 其它
  4. Django错误:TypeError at / ‘bool’ object is not callable解决

Django错误:TypeError at / ‘bool’ object is not callable解决

上传者: 2020-12-31 17:43:37上传 PDF文件 33.98KB 热度 17次
使用 Django自带的 auth 用户验证功能,编写函数,使用 is_authenticated 检查用户是否登录,结果报错: TypeError at / 'bool' object is not callable 编写函数如下: def index(request, pid=None, del_pass=None): if request.user.is_authenticated(): username = request.user.username useremail = request.user.email messages.get_messages(
用户评论