Django - 在保存模型之前从“clean”访问 m2m 对象(或原始 pks)
当然你不能只使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您所要求的是不可能的 - 在主对象具有主键值之前,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.