作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用的是 Django 2.2.5,在我的模型中有多个基于枚举的选择字段。由于未知原因,我现在在迁移期间使用枚举选择字段时遇到迁移错误:
django.db.utils.OperationalError: (1067, "Invalid default value for 'protocol'")
模型.py
from django.db import models
# See class above
from .utils import NetworkProtocolList
class Networks(models.Model):
ipv4 = models.GenericIPAddressField(blank=False, null=False)
protocol = models.CharField(choices=NetworkProtocolList.choices(), max_length=20,default=NetworkProtocolList.ETH)
class Meta:
managed = True
db_table = 'networks'
utils.py
from enum import Enum
class NetworkProtocolList(Enum):
ETH = 'Ethernet'
MPLS = 'MPLS'
@classmethod
def choices(cls):
return [(key.name, key.value) for key in cls]
我发
manage.py makemigrations
及后续
manage.py migrate
产生了以下错误:
django.db.utils.OperationalError: (1067, "Invalid default value for'protocol'")
xxxx_auto_xxxxxxxx_xxxx.py
# Auto generated migration file
import my_.utils
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('my_app', 'yyyy_auto_yyyyyyyy_yyyy'),
]
operations = [
migrations.AddField(
model_name='networks',
name='protocol',
# Field definition here, pay attention to the default value
field=models.CharField(choices=[('ETH', 'Ethernet'), ('MPLS', 'MPLS')], default=my_app.utils.NetworkProtocolList('Ethernet'), max_length=20),
),
]
然后我编辑迁移文件以手动将默认值设置为字符串而不是调用枚举类:
xxxx_auto_xxxxxxxx_xxxx.py
# Edited migration file
import my_.utils
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('my_app', 'yyyy_auto_yyyyyyyy_yyyy'),
]
operations = [
migrations.AddField(
model_name='networks',
name='protocol',
# Field definition here, pay attention to the modified default value
field=models.CharField(choices=[('ETH', 'Ethernet'), ('MPLS', 'MPLS')], default='Ethernet', max_length=20),
),
]
现在迁移工作正常,但我想知道为什么我不能像在使用枚举而不是垃圾字符串之前那样定义默认值,因为我有其他模型字段可以正常工作。
这是一个错误吗,我在这里遗漏了什么,如何在 Django 中基于枚举为模型字段设置默认值?
最佳答案
由于您使用的是 Django<3.X,Django 无法识别枚举值。因此,使用枚举类的 .value
属性作为
protocol = models.CharField(
choices=NetworkProtocolList.choices(),
max_length=20,
<b>default=NetworkProtocolList.ETH.value # <--- change is here</b>
)
关于django - 如何在 Django 中基于枚举为模型字段设置默认值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65308658/
我是一名优秀的程序员,十分优秀!