這篇文章給大家分享的是有關(guān)Django的models中on_delete參數(shù)是什么意思的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)于2013年創(chuàng)立,先為梅州等服務(wù)建站,梅州等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為梅州企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。在Django2.0以上的版本中,創(chuàng)建外鍵和一對一關(guān)系必須定義on_delete參數(shù),我們可以在其源碼中看到相關(guān)信息
class ForeignKey(ForeignObject): """ Provide a many-to-one relation by adding a column to the local model to hold the remote value. By default ForeignKey will target the pk of the remote model but this behavior can be changed by using the ``to_field`` argument. """ # Field flags many_to_many = False many_to_one = True one_to_many = False one_to_one = False rel_class = ManyToOneRel empty_strings_allowed = False default_error_messages = { 'invalid': _('%(model)s instance with %(field)s %(value)r does not exist.') } description = _("Foreign Key (type determined by related field)") def __init__(self, to, on_delete, related_name=None, related_query_name=None, limit_choices_to=None, parent_link=False, to_field=None, db_constraint=True, **kwargs):
to:關(guān)聯(lián)的表
on_delete:當(dāng)該表中的某條數(shù)據(jù)刪除后,關(guān)聯(lián)外鍵的操作
related_name:反查參數(shù),設(shè)置后可以在被關(guān)聯(lián)表中通過該字段反查外鍵所在表,默認(rèn):set_表名
to_field:默認(rèn)主鍵,因為mysql只支持主鍵作為外鍵,就算你沒顯式的創(chuàng)建主鍵,Django會給你自動創(chuàng)建,如果你是DB-first,且沒創(chuàng)建主鍵:數(shù)據(jù)庫默認(rèn)使用隱藏字段:DB_ROW_ID作為主鍵
on_delete參數(shù)設(shè)置
CASCADE:級聯(lián)刪除,當(dāng)關(guān)聯(lián)表中的數(shù)據(jù)刪除時,該外鍵也刪除
PROTECT: 保護(hù)模式,如果采用該選項,刪除的時候,會拋出ProtectedError錯誤。
SET_NULL: 置空模式,刪除的時候,外鍵字段被設(shè)置為空,前提就是blank=True, null=True,定義該字段的時候,允許為空。
SET_DEFAULT: 設(shè)置默認(rèn)值,刪除的時候,外鍵字段設(shè)置為默認(rèn)值,所以定義外鍵的時候注意加上一個默認(rèn)值。
SET(): 自定義一個值,該值當(dāng)然只能是對應(yīng)的實體
感謝各位的閱讀!關(guān)于“Django的models中on_delete參數(shù)是什么意思”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!