1. 程式人生 > >關於django 2.x版本中models.ForeignKey() 外來鍵說明

關於django 2.x版本中models.ForeignKey() 外來鍵說明

下面是程式碼

class GroupInfos(models.Model):
    uid = models.AutoField(primary_key=True)
    caption = models.CharField(max_length=32, unique=True)
    ctime = models.DateTimeField(auto_now_add=True, null=True)
    uptime = models.DateTimeField(auto_now=True, null=True)

class UserInfos(models.Model):
    username = models.CharField(max_length=32, blank=True, verbose_name='使用者名稱')
    password = models.CharField(max_length=64, help_text='text')
    email = models.EmailField(max_length=60)
    user_group = models.ForeignKey('GroupInfos', to_field='uid', on_delete='CASCADE')


說明

第一個class建立一個名稱為app_groupinfos的表
第二個class建立一個名稱為app_userinfos的表

1、ForeignKey 表示設定外健
2、to_field表示外健關聯的主鍵
3、on_delete有多個選項

引用 https://www.cnblogs.com/phyger/p/8035253.html:
在django2.0後,定義外來鍵和一對一關係的時候需要加on_delete選項,此引數為了避免兩個表裡的資料不一致問題,不然會報錯:
TypeError: init() missing 1 required positional argument: ‘on_delete’
舉例說明:
user=models.OneToOneField(User)
owner=models.ForeignKey(UserProfile)
需要改成:
user=models.OneToOneField(User,on_delete=models.CASCADE) --在老版本這個引數(models.CASCADE)是預設值
owner=models.ForeignKey(UserProfile,on_delete=models.CASCADE) --在老版本這個引數(models.CASCADE)是預設值
引數說明:
on_delete有CASCADE、PROTECT、SET_NULL、SET_DEFAULT、SET()五個可選擇的值
CASCADE:此值設定,是級聯刪除。
PROTECT:此值設定,是會報完整性錯誤。
SET_NULL:此值設定,會把外來鍵設定為null,前提是允許為null。
SET_DEFAULT:此值設定,會把設定為外來鍵的預設值。
SET():此值設定,會呼叫外面的值,可以是一個函式。
一般情況下使用CASCADE就可以了。

那麼,這個時候一個group就會對應多個user,屬於一對多的型別。
當我們查詢一個組有那些使用者的時候,就會用到當前的外健,

建立記錄

並且,在class中定義了foreignKey之後,group還不存在的同時,user表也因為約束的原因,不能被進行建立

刪除記錄

並且,在class中定義了foreignKey之後,user中記錄存在的同時,group表中的記錄也因為約束的原因,不能被進行刪除