ForeignKey外键字段on_delete属性详解
on_delete解释: 当子表中的某条数据删除后,关联的外键操作。
一. 常用类型
1. SET_NULL
on_delete = models.SET_NULL
置空模式,删除时,外键字段被设置为空,前提就是blank=True, null=True,定义该字段时,允许为空。
理解:
举例:
class Feedback(models.Model):
user = models.ForeignKey(User, on_delete=models.SET_NULL, null=True, blank=Tru)
2. CASCADE
on_delete = models.CASCADE
举例:
class Feedback(models.Model):
user = models.ForeignKey(User, on_delete=models.CASCADE, null=True, blank=Tru)
到此,我们可以发现SET_NULL
模式是要安全一些的。因为即使删除了附表的数据后,子表的数据依然存在。
当然,我们在开发的时候就需要根据相应的需求选择on_delete模式了。
二. 其他补充知识:
-
on_delete = models.PROTECT: 保护模式,如采用这个方法,在删除关联数据时会抛出ProtectError错误
-
on_delete = models.SET_DEFAULT: 设置默认值,删除子表字段时,外键字段设置为默认值,所以定义外键的时候注意加上一个默认值。
三. 附上delete.py源码
def CASCADE(collector, field, sub_objs, using):
"""
当前对象删除后,一并删除该对象下的外键信息
:param collector:
:param field:
:param sub_objs:
:param using:
:return:
"""
collector.collect(sub_objs, source=field.remote_field.model,
source_attr=field.name, nullable=field.null)
if field.null and not connections[using].features.can_defer_constraint_checks:
collector.add_field_update(field, None, sub_objs)
def PROTECT(collector, field, sub_objs, using):
"""
删除时会引起 ProtectedError,不删除关联表的内容
:param collector:
:param field:
:param sub_objs:
:param using:
:return:
"""
raise ProtectedError(
"Cannot delete some instances of model '%s' because they are "
"referenced through a protected foreign key: '%s.%s'" % (
field.remote_field.model.__name__, sub_objs[0].__class__.__name__, field.name
),
sub_objs
)
def SET(value):
"""
SET(), 此时需要指定 set 的值, 括号里可以是函数,也可以为自己定义的东西;
:param value:
:return:
"""
if callable(value):
def set_on_delete(collector, field, sub_objs, using):
collector.add_field_update(field, value(), sub_objs)
else:
def set_on_delete(collector, field, sub_objs, using):
collector.add_field_update(field, value, sub_objs)
set_on_delete.deconstruct = lambda: ('django.db.models.SET', (value,), {})
return set_on_delete
def SET_NULL(collector, field, sub_objs, using):
"""
只有当当前字段设置 null 设置为 True 才有效,此情况会将 ForeignKey 字段设置为 null
:param collector:
:param field:
:param sub_objs:
:param using:
:return:
"""
collector.add_field_update(field, None, sub_objs)
def SET_DEFAULT(collector, field, sub_objs, using):
"""
当前字段设置了default 才有效,此情况会将 ForeignKey 字段设置为 default 值
:param collector:
:param field:
:param sub_objs:
:param using:
:return:
"""
collector.add_field_update(field, field.get_default(), sub_objs)
def DO_NOTHING(collector, field, sub_objs, using):
"""
什么也不做
:param collector:
:param field:
:param sub_objs:
:param using:
:return:
"""
pass
原文地址:https://blog.csdn.net/qq_43030934/article/details/130292746
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_49527.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。