model詳解 Django中遵循 Code Frist 的原則,即:根據代碼中定義的類來自動生成資料庫表。 創建表 基本結構 from django.db import models # Create your models here. class userinfo(models.Model): ...
model詳解
Django中遵循 Code Frist 的原則,即:根據代碼中定義的類來自動生成資料庫表。
創建表
基本結構
from django.db import models # Create your models here. class userinfo(models.Model): nid = models.AutoField(primary_key=True) username = models.CharField(max_length=32) email = models.EmailField() ip = models.GenericIPAddressField() memo = models.TextField() img = models.ImageField() usertype=models.ForeignKey("usertype",null=True,blank=True) class usertype(models.Model): name = models.CharField(max_length=32) def __str__(self): return self.name
更多欄位:
1、models.AutoField 自增列 = int(11) 如果沒有的話,預設會生成一個名稱為 id 的列,如果要顯示的自定義一個自增列,必須將給列設置為主鍵 primary_key=True。 2、models.CharField 字元串欄位 必須 max_length 參數 3、models.BooleanField 布爾類型=tinyint(1) 不能為空,Blank=True 4、models.ComaSeparatedIntegerField 用逗號分割的數字=varchar 繼承CharField,所以必須 max_lenght 參數 5、models.DateField 日期類型 date 對於參數,auto_now = True 則每次更新都會更新這個時間;auto_now_add 則只是第一次創建添加,之後的更新不再改變。 6、models.DateTimeField 日期類型 datetime 同DateField的參數 7、models.Decimal 十進位小數類型 = decimal 必須指定整數位max_digits和小數位decimal_places 8、models.EmailField 字元串類型(正則表達式郵箱) =varchar 對字元串進行正則表達式 9、models.FloatField 浮點類型 = double 10、models.IntegerField 整形 11、models.BigIntegerField 長整形 integer_field_ranges = { 'SmallIntegerField': (-32768, 32767), 'IntegerField': (-2147483648, 2147483647), 'BigIntegerField': (-9223372036854775808, 9223372036854775807), 'PositiveSmallIntegerField': (0, 32767), 'PositiveIntegerField': (0, 2147483647), } 12、models.IPAddressField 字元串類型(ip4正則表達式) 13、models.GenericIPAddressField 字元串類型(ip4和ip6是可選的) 參數protocol可以是:both、ipv4、ipv6 驗證時,會根據設置報錯 14、models.NullBooleanField 允許為空的布爾類型 15、models.PositiveIntegerFiel 正Integer 16、models.PositiveSmallIntegerField 正smallInteger 17、models.SlugField 減號、下劃線、字母、數字 18、models.SmallIntegerField 數字 資料庫中的欄位有:tinyint、smallint、int、bigint 19、models.TextField 字元串=longtext 20、models.TimeField 時間 HH:MM[:ss[.uuuuuu]] 21、models.URLField 字元串,地址正則表達式 22、models.BinaryField 二進位 23、models.ImageField 圖片 24、models.FilePathField 文件
更多參數
1、null=True 資料庫中欄位是否可以為空 2、blank=True django的 Admin 中添加數據時是否可允許空值 3、primary_key = False 主鍵,對AutoField設置主鍵後,就會代替原來的自增 id 列 4、auto_now 和 auto_now_add auto_now 自動創建---無論添加或修改,都是當前操作的時間 auto_now_add 自動創建---永遠是創建時的時間 5、choices GENDER_CHOICE = ( (u'M', u'Male'), (u'F', u'Female'), ) gender = models.CharField(max_length=2,choices = GENDER_CHOICE) 6、max_length 7、default 預設值 8、verbose_name Admin中欄位的顯示名稱 9、name|db_column 資料庫中的欄位名稱 10、unique=True 不允許重覆 11、db_index = True 資料庫索引 12、editable=True 在Admin里是否可編輯 13、error_messages=None 錯誤提示 14、auto_created=False 自動創建 15、help_text 在Admin中提示幫助信息 16、validators=[] 17、upload-to 上傳到哪個位置,更多與image,filepath配合使用
連表結構
- 一對多:models.ForeignKey(其他表)
- 多對多:models.ManyToManyField(其他表)
- 一對一:models.ManyToManyField(其他表)
應用場景:
應用場景: 一對多:當一張表中創建一行數據時,有一個單選的下拉框(可以被重覆選擇) 例如:創建用戶信息時候,需要選擇一個用戶類型【普通用戶】【金牌用戶】【鉑金用戶】等。 多對多:在某表中創建一行數據是,有一個可以多選的下拉框 例如:創建用戶信息,需要為用戶指定多個愛好 一對一:在某表中創建一行數據時,有一個單選的下拉框(下拉框中的內容被用過一次就消失了 例如:原有含10列數據的一張表保存相關信息,經過一段時間之後,10列無法滿足需求,需要為原來的表再添加5列數據
更多詳解請參考https://blog.csdn.net/Com_ma/article/details/77847404?fps=1&locationNum=3 和 https://www.cnblogs.com/BlueSkyyj/p/11234852.html