我正在使用 Django 2.0。
我想使用 firebase 云消息传递,所以我安装了fcm_django。
我必须在文件中替换is_authenticated()
为is_authenticated
(不带括号)rest_framework.py
。
所以我编辑了文件
/home/test/venv_btg/lib/python3.6/site-packages/fcm_django/api/rest_framework.py
然后我保存文件。
但是当我运行网址时。它在文件 rest_framework.py 中显示以下错误
if user is not None and user.is_authenticated():
但我已经is_authenticated()
改为is_aunthenticated
为什么 django 没有反映这些变化?