1

我想列出 django 为特定应用程序的模型创建的权限,就像在 django 后端创建用户时所做的那样:

app_name | model_name | can add model_name

这个怎么做?

4

1 回答 1

0

您可以从 Permissions 模型中检索它,例如:

>>> Permission.objects.filter(content_type=ContentType.objects.get(app_label='auth',
model='user')) 

[<Permission: auth | user | Can add user>, <Permission:
auth | user | Can change user>, <Permission: auth | user | Can delete
user>]
于 2013-10-01T07:49:03.620 回答