django 数据模型中 null=True 和 blank=True 有什么区别

null:
    If True, Django will store empty values as NULL in the database. Default
is False.
    如果为True,空值将会被存储为NULL,默认为False。
blank:
    If True, the field is allowed to be blank. Default is False.
    如果为True,字段允许为空,默认不允许。

  

posted @ 2018-04-15 22:47  0bug  阅读(994)  评论(0编辑  收藏  举报