我正在为django制作一个django-conversejs应用程序。我遵循了django-conversejs页面的教程。但是当我尝试运行它时,发生了一个错误。我在我的设置安装的应用程序中添加了conversejs应用程序。 调试跟踪给出错误
下面是我的html页面代码。
<!DOCTYPE html>
{% load conversejs %}
<html>
<head>
<title>Test App</title>
{% conversejs_static %}
</head>
<body>
<h1>Hello, Conversjs!</h1>
{% conversejs_chatpanel %}
{% conversejs_initialize %}
</body>
</html>
在我的settings.py文件中,我正在使用BOSH XMPP服务器链接
CONVERSEJS_BOSH_SERVICE_URL = 'https://conversejs.org/http-bind/'
当我运行应用程序时,它显示以下错误
Exception Type: AttributeError
Exception Value:
'NoneType' object has no attribute 'user'
Exception Location: D:\PythonDev\django_dev\sunny_project\env_sunny\lib\site-packages\conversejs\utils.py in get_conversejs_context, line 21