我有一个模型,其中使用Enum进行选择:
class Agreement(models.Model):
class Category(enum.Enum):
EULA = 0
PROVIDER = 1
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)
category = models.IntegerField(
choices=[(choice.name, choice.value)
for choice in Category])
title = models.CharField(max_length=128)
content = models.TextField()
我使用简单的管理站点注册进行注册:
admin.site.register(Agreement)
管理站点呈现对象时,不允许我保存它吗?有人遇到过类似的问题吗?
答案 0 :(得分:3)
每个元组中的第一个元素是要在模型上设置的实际值,第二个元素是人类可读的名称。
name
和value
应该相反,像这样:
category = models.IntegerField(
choices=[(choice.value, choice.name)
for choice in Category])
因为category
是一个整数字段,而name
返回一个字符串。