0
我爲Django的 打開外殼命令python manage.py殼Django的權威性實時效果
from django.contrib.auth import authenticate
print authenticate(username='q80', password='nokia6230') #result q80
現在如果我在Django管理站點/管理 記錄並更改密碼,並返回到shell 如果我使用舊值仍然可以進行身份驗證!
from django.contrib.auth import authenticate
print authenticate(username='q80', password='newpassword') #result None
print authenticate(username='q80', password='nokia6230') #result q80
如果關閉shell會話並再次打開它的工作!
我該如何實時改變效果!?
在更改管理員密碼後,如果有任何更改,是否嘗試檢查數據庫?我也想知道,如果您的任何身份驗證後端緩存 – andrefsp
我檢查,其成功更改,除了在殼!我應該退出然後重新加載 – mohd