时间:2021-05-22
使用 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(request) template = get_template('index.html') html = template.render(context=locals(), request=request) return HttpResponse(html)查询相关资料,发现 is_authenticated 是属性而不是方法,我们应该把括号去掉,这样就没什么问题了。
将
if request.user.is_authenticated():
改为
if request.user.is_authenticated:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
后台操作提示数据库错误!Error:Unknowncolumn'app1'in'whereclause'Errno:1054SQ
Python出现错误TypeError:‘NoneType'objectisnotiterable解决办法TypeError:'NoneType'objecti
{if$_G['setting']['icp']}、$_G['setting']['icp']都
解决settingproperty'source'to'org.eclipse.jst.jee.server的问题,我相信我的方法已经能
常见问题accessdeniedforuser''@'localhost'todatabase'web02'//