Django Models欄位屬性表

2021-07-27 10:22:41 字數 2006 閱讀 6364

v=models.charfield(max_length=none[, **options])    #varchar

v=models.emailfield([max_length=75, **options])    #varchar

v=models.urlfield([verify_exists=true, max_length=200, **options])    #varchar

v=models.filefield(upload_to=none[, max_length=100, **options])    #varchar

#upload_to指定儲存目錄可帶格式,

v=models.imagefield(upload_to=none[, height_field=none, width_field=none, max_length=100, **options])

v=models.ipaddressfield([**options])    #varchar

v=models.filepathfield(path=none[, match=none, recursive=false, max_length=100, **options]) #varchar

v=models.slugfield([max_length=50, **options])    #varchar,標籤,內含索引

v=models.commaseparatedintegerfield(max_length=none[, **options])    #varchar

v=models.integerfield([**options])    #int

v=models.positiveintegerfield([**options])    #int 正整數

v=models.smallintegerfield([**options])    #smallint

v=models.positivesmallintegerfield([**options])    #smallint 正整數

v=models.autofield(**options)    #int;在django**內是自增

v=models.decimalfield(max_digits=none, decimal_places=none[, **options])    #decimal

v=models.floatfield([**options])    #real

v=models.booleanfield(**options)    #boolean或bit

v=models.nullbooleanfield([**options])    #bit欄位上可以設定上null值

v=models.datefield([auto_now=false, auto_now_add=false, **options])    #date

#auto_now最後修改記錄的日期;auto_now_add新增記錄的日期,修改時此時間不發生變化 

v=models.datetimefield([auto_now=false, auto_now_add=false, **options])    #datetime

v=models.timefield([auto_now=false, auto_now_add=false, **options])    #time

v=models.textfield([**options])    #text

v=models.xmlfield(schema_path=none[, **options])    #text

v=models.foreignkey(othermodel[, **options])    #外來鍵,關聯其它模型,建立關聯索引

v=models.manytomanyfield(othermodel[, **options])    #多對多,關聯其它模型,建立關聯表

v=models.onetoonefield(othermodel[, parent_link=false, **options])    #一對一,字段關聯表屬性

Django Models 字段型別

編號 字段型別filed types描述1 autofield 如果沒有指明主鍵,就會產生乙個自增的主鍵。2bigintegerfield 64位的整型數值,從 2 63 9223372036854775808 到 2 63 1 9223372036854775807 3binaryfield 儲存...

django models欄位型別

相關 字段型別 型別 說明 autofield 自動增長的integerfield,通常不用指定,不指定時django會自動建立屬性名為id的自動增長屬性 booleanfield 布林字段,值為true或false nullbooleanfield 支援null true false三種值 cha...

建立lucene時document欄位屬性的選擇

在建立索引檔案的時候,不知道會不會有下面的疑惑 1 document欄位設定成什麼型別?2 採用什麼分詞器?3 欄位的權重設定成多少等?這些也許都是我們在建立索引檔案中經常會遇到的問題,這篇就主要說一下自己關於第乙個問題的理解 此篇是以 lucene 4.3.1 為事例,其他版本類似 個人認為,我們...