作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想通过密码获取用户,所以当我输入以下代码时
User.objects.get(password='test')
我收到一个错误,我已经知道什么是错误,这是因为密码已被散列,但我想得到它,那么我在这里需要什么技巧?
最佳答案
I get an error and I already know what is error is talking about which occurs because the password has been hashed but I want to get it, so what is the trick I need here?
User
对象,并使用
.check_password(…)
method [Django-doc] :
for user in User.objects.all():
if user.check_password('test'):
# … we found a user with password 'test'
pass
有关更多信息,请参阅
How Django stores passwords section of the documentation .
关于django - 如何在 Django ORM 中获取密码哈希?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64250983/
我是一名优秀的程序员,十分优秀!