Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我建立了一个登录表单,我可以以主管理员身份登录,我希望当我以管理员身份登录时,auth_user 表中的所有用户都列在管理员配置文件中,以便我可以手动编辑它们。
所以请告诉我如何访问该 auth_user 表,以便获取所有用户信息。
使用单行 sql 命令
SELECT * from auth_user;
别的
导入您的用户模型,例如
from django.contrib.auth.models import User
试试这个(Django 查询集)
User.objects.all()