如何指定 DjangoForeignKey 字段的默认值?

发布于 2024-11-29 17:34:14 字数 333 浏览 0 评论 0原文

我正在尝试使用 South 将 ForeignKey 字段添加到 Django 模型中。我收到以下错误:

ValueError:您无法添加没有默认值的 null=False 列。

事实上,我确实为该字段指定了默认值,但我不确定我做得是否正确。

language = models.ForeignKey(Language, default=Language.objects.all()[0])

这应该有效吗?

I’m trying to add a ForeignKey field to a Django model using South. I’m getting the following error:

ValueError: You cannot add a null=False column without a default value.

I did, in fact, specify a default value for the field, but I’m not sure I did it correctly.

language = models.ForeignKey(Language, default=Language.objects.all()[0])

Should this work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

挽梦忆笙歌 2024-12-06 17:34:14

AFAIK Django 不会执行作为参数传递的查询集,即使它仅限于一个元素。您应该尝试类似本文

class Foo(models.Model):
    a = models.CharField(max_length=10)

def get_foo():
    return Foo.objects.get_or_create(id=1)

class Bar(models.Model):
    b = models.CharField(max_length=10)
    a = models.ForeignKey(Foo, default=get_foo)

AFAIK Django won't execute a QuerySet passed as a param, even if it's limited to one element. You should try something like proposed in this post

class Foo(models.Model):
    a = models.CharField(max_length=10)

def get_foo():
    return Foo.objects.get_or_create(id=1)

class Bar(models.Model):
    b = models.CharField(max_length=10)
    a = models.ForeignKey(Foo, default=get_foo)
记忆之渊 2024-12-06 17:34:14

因为 get_or_create 返回一个元组,所以我认为这是一个

def get_default():
    result, _ = Foo.objects.get_or_create(id=1)
    return result

比这个更好的解决方案

return Foo.objects.get_or_create(id=1)

Because get_or_create returns a tuple, I think this is a better solution

def get_default():
    result, _ = Foo.objects.get_or_create(id=1)
    return result

than this

return Foo.objects.get_or_create(id=1)
滥情空心 2024-12-06 17:34:14

这实际上是@radious 答案的扩展。你也可以在默认情况下使用 lambda,如果你想删除代码行

class Foo(models.Model):
    a = models.CharField(max_length=10)

class Bar(models.Model):
    b = models.CharField(max_length=10)
    a = models.ForeignKey(Foo, default=lambda: Foo.objects.get_or_create(id=1)[0])

,请注意你必须在 get_or_create() 上使用索引 0,因为该方法返回一个元组,所以你需要获取对象,而不是元组。

https://docs.djangoproject.com/en/ 1.6/ref/models/querysets/#get-or-create

This is really an extension to @radious answer. You can also use lambda in the default, if you're looking to cut out lines of code

class Foo(models.Model):
    a = models.CharField(max_length=10)

class Bar(models.Model):
    b = models.CharField(max_length=10)
    a = models.ForeignKey(Foo, default=lambda: Foo.objects.get_or_create(id=1)[0])

note that you have to use index 0 on get_or_create() because the method returns a tuple, so you need to get the object, instead of the tuple.

https://docs.djangoproject.com/en/1.6/ref/models/querysets/#get-or-create

甜味超标? 2024-12-06 17:34:14

您应该使用 get_or_create()models.ForeignKey() 需要 on_delete 如下所示。 *不要忘记将 .id 放在 get_or_create(id=1)[0] 之后,因为 default in models.ForeignKey() 需要 idLanguage 对象,否则会出现错误:

language = models.ForeignKey(
    Language,               # Here  
    default=Language.objects.get_or_create(id=1)[0].id),
    on_delete=models.CASCADE # Here
)

You should use get_or_create() and models.ForeignKey() needs on_delete as shown below. *Don't forget to put .id just after get_or_create(id=1)[0] because default in models.ForeignKey() needs id of a Language object otherwise there is an error:

language = models.ForeignKey(
    Language,               # Here  
    default=Language.objects.get_or_create(id=1)[0].id),
    on_delete=models.CASCADE # Here
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文