对 ModelForm() 子级的 save() 中的 self.instance 感到困惑

发布于 2024-10-20 05:31:50 字数 380 浏览 2 评论 0原文

save() 文档 解释说:

ModelForm 的子类可以接受 现有模型实例作为关键字 参数实例;如果这是 提供后, save() 将更新该内容 实例。如果未提供,则 save() 将创建一个新实例 指定型号

但是,save() 中的self.instance 始终有一个对象。

那么,我如何判断实例是现有的还是新创建的?

The save() documentation explains that:

A subclass of ModelForm can accept an
existing model instance as the keyword
argument instance; if this is
supplied, save() will update that
instance. If it's not supplied, save()
will create a new instance of the
specified model

However, self.instance in save() always has an object.

So, how do I tell if the instance is existing or a newly created one?

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

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

发布评论

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

评论(1

帅冕 2024-10-27 05:31:50

您可以检查 self.instance.pk 来查看模型之前是否已保存。但是,如果您创建了模型的新实例,然后在保存之前使用该实例初始化了模型表单,则这可能不可靠。

另一种可能性是基于 Django 1.2 中的 BaseModelForm 源代码,检查 self.instance._adding ,如果模型已创建,则为 True,否则为 False。不过,我还没有测试过这个,所以 YMMV。

如果第一个选项可行,我建议使用它而不是 ModelForms 的未记录功能——它将来不太可能改变,而且可能更清晰。

You can check self.instance.pk to see if the model has previously been saved. However, that could be unreliable in the case where you created a new instance of the model and then initialized a modelform with that instance before saving it.

Another possibility, based on the BaseModelForm source code in Django 1.2, is to check self.instance._adding, which will be True if the model was created and False otherwise. However, I haven't tested this, so YMMV.

If the first option will work, I'd recommend using that rather than an undocumented feature of ModelForms--it's less likely to change in the future and probably clearer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文