Django - 在保存模型之前从“clean”访问 m2m 对象(或原始 pks)

发布于 2024-10-13 18:50:21 字数 163 浏览 2 评论 0原文

当然你不能只使用 self.lated_field.objects.all() ,否则你会得到一个 ...需要有一个主键...错误,但如果我想在 Model.clean 内部运行自定义验证,似乎无法访问此数据。当然,您可以使用 Form.clean 来执行此操作,但我并不总是使用表单。

Of course you can't just use self.related_field.objects.all(), or you'll get a ...needs to have a primary key... error, but if I want to run custom validation inside of Model.clean, there appears to be no way to access this data. Of course you can use Form.clean to do this, but I'm not always using forms.

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

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

发布评论

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

评论(1

睡美人的小仙女 2024-10-20 18:50:21

您所要求的是不可能的 - 在主对象具有主键值之前,M2M 记录无法存在。无法访问该数据,因为它不存在。

What you are asking for is impossible - the M2M records cannot exist until the main object has a primary key value. There is no way to access the data because it does not exist.

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