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.
我在我的模型中使用 BooleanField,如下所示:
活动 = 模型.BooleanField()
在 django admin 中编辑期间,总是检查属性“活动”,为什么?
利用
active = models.BooleanField(default=False)
默认情况下,它显示为活动,即选中/真。
如果您还想要 NULL 值,请尝试使用NullBooleanField
NullBooleanField