我有点困惑它是如何工作的。我已经完成了用 mongoengine 替换 Django 的默认身份验证的所有步骤,以便它使用 mongodb 和数据库,但我尝试制作一个注册页面,但不知道如何使用超级用户功能。目前我正在尝试
newuser = UserManager.create_superuser(username=request.POST['username'],
password=request.POST['password'],
email=request.POST['email'])
newuser.save()
但我一直给我错误
TypeError at /registerSuper/
unbound method create_superuser() must be called with UserManager instance as first argument (got nothing instead)