The difference between blank and null in CharField parameter in model when django builds table

blank 填写表单可以为空,sql中存空字符串
null 数据库表现是NULL ,不是空字符串
注意
日期类型(DateField\TimeField\DateTimeField)
数字类型(IntegerField\DecimalField\FloatField)
不能接受空字符串
如果想要日期和数字类型字段为空 需同时设置null=True\blank=True

Guess you like

Origin blog.csdn.net/weixin_42540340/article/details/108281983