您好,登錄后才能下訂單哦!
這篇文章主要講解了如何創(chuàng)建django外鍵,內(nèi)容清晰明了,對此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會有幫助。
創(chuàng)建表需要鏈接外鍵時,需要注意的事項。
class Book(models.Model): name=models.CharField(max_length=20) price=models.IntegerField() pub_date=models.DateField() publish=models.ForeignKey("Publish",on_delete=models.CASCADE) # 添加外鍵的時候publish 可以不加引號;如果不加引號外鍵就要寫在主表上面,否則查找不到。添加引號則是按照映射關(guān)系查找,就不用考慮先后順序。 # authors=models.ManyToManyField("Author") def __str__(self): return self.name class Publish(models.Model): name=models.CharField(max_length=32) city=models.CharField(max_length=32) def __str__(self): return self.name
補充知識:Django重寫User外鍵重復(fù)問題
python Migrate 出現(xiàn)以下錯誤
auth.User.groups: (fields.E304) Reverse accessor for 'User.groups' clashes with reverse accessor for 'User.groups'.
HINT: Add or change a related_name argument to the definition for 'User.groups' or 'User.groups'.
auth.User.user_permissions: (fields.E304) Reverse accessor for 'User.user_permissions' clashes with reverse accessor for 'User.user_permissions'.
在setting里添加
AUTH_USER_MODEL = 'users.UserProfile'
即可解決問題。
看完上述內(nèi)容,是不是對如何創(chuàng)建django外鍵有進一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。