Flask之 bool object has no attribute '__call__'问题

今天用Flask-Login时,遇到了一个问题,显示为:
{%if current_user.is_authenticated()%} 'bool' object has no attribute 'call'
查找了解决方案为:
current_user.is_authenticated" instead of "current_user.is_authenticated()"
但是不知道为什么这么做就没问题。
具体连接为:
https://github.com/lingthio/Flask-User-starter-app/issues/9
记录问题,以后明白了再来补充答案。

你可能感兴趣的:(Flask之 bool object has no attribute '__call__'问题)