• Django在根据models生成数据库表时报 __init__() missing 1 required positional argument: 'on_delete'


    from django.db import models
    
    # Create your models here.
    class Category(models.Model):
        caption = models.CharField(max_length=16)
    
    class ArticleType(models.Model):
        caption = models.CharField(max_length=16)
    
    class Article(models.Model):
        title = models.CharField(max_length=32)
        content = models.CharField(max_length=255)
        category = models.ForeignKey(Category)
        article_type = models.ForeignKey(ArticleType)
    #chaget to
    #
    category = models.ForeignKey(Category,on_delete=models.CASCADE)

    #article_type = models.ForeignKey(ArticleType,on_delete=models.CASCADE)
    # type_choice = ( # (0,'python'), # (1,'openStack'), # (2,'Linux'), # )#data save to memery,is simple # article_type_id = models.IntegerField(choices=type_choice)

    原因:

    在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就可以了。

  • 相关阅读:
    sql语句性能优化
    Windows版Redis如何使用?(单机)
    redis在项目中的使用(单机版、集群版)
    在windows上搭建redis集群(redis-cluster)
    Jenkins打包Maven项目
    numpy交换列
    Linq中join多字段匹配
    SpringMVC Web项目升级为Springboot项目(二)
    SpringMVC Web项目升级为Springboot项目(一)
    springboot读取application.properties中自定义配置
  • 原文地址:https://www.cnblogs.com/jackzz/p/10789372.html
Copyright © 2020-2023  润新知