gpt4 book ai didi

python - 如何在 Django CharField 下启用默认值显示

转载 作者:太空宇宙 更新时间:2023-11-04 11:20:11 24 4
gpt4 key购买 nike

我在 Django models.py 中有这一行:

class Method1(models.Model):
# other param
species_param = models.CharField(max_length=20, choices=(('mouse', 'Mouse'), ('human','Human'))

看起来像这样:

enter image description here

请注意,默认值设置为 -----。我想将它设置为 Mouse。我该怎么做?

我还想完全删除 ---

最佳答案

我没有测试它,但它可能会解决你的问题:

class Mehod1(models.Model):
# other param
species_param = models.CharField(max_length=20, choices=(('mouse', 'Mouse'), ('human', 'Human')), default='mouse')

关于python - 如何在 Django CharField 下启用默认值显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32858831/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com