修改管理员身份验证后端
默认情况下,在 /admin 上进行身份验证后,函数 authenticate()
返回 User
对象,
如果我想获取用户的代理模型(ig 称为 HandyUser)怎么办作为回报?在我的项目中,在所有自定义身份验证后端中,我使用 HandyUser 而不是 User。
谢谢
By default, after authentication on /admin, function authenticate()
returns User
object,
what if i want to get proxy model for the User (i.g. called HandyUser) in return ? In my project, in all custom auth backends, i'm using HandyUser instead of User.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 django 文档 http://docs .djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-user,您需要添加到您的设置文件中:
然后当您引用您的 User 类时,调用
user.get_profile
方法将返回 HandyUser 的实例。According to the django docs http://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-user, you need to add to your settings file:
And then when you reference your User class, call the
user.get_profile
method which will return the instance of HandyUser.