Django Book 翻译
菜单>:
TOC
返回
原文:
Behind the scenes, Django maintains a list of authentication back-ends that it checks for authentication. When somebody calls ``django.contrib.auth.authenticate()`` (as described in Chapter 12), Django tries authenticating across all of its authentication back-ends. If the first authentication method fails, Django tries the second one, and so on, until all back-ends have been attempted.
翻译:
在后台,Django维护了一个用于检查认证的后台列表。当某个人调用 ``django.contrib.auth.authenticate()`` (如12章中所述)时,Django会尝试对其认证后台进行遍历认证。如果第一个认证方法失败,Django会尝试认证第二个,以此类推,一直到尝试完。
备注:
译者: