Django 内联表单集 - 获取保存的对象
if formset.is_valid():
formset.save()
您好,我如何获取保存的内联表单集对象?事实上,我的表单集没有独特的字段。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
if formset.is_valid():
formset.save()
您好,我如何获取保存的内联表单集对象?事实上,我的表单集没有独特的字段。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
formset.save()
将返回已保存实例的列表。您还可以浏览表单集中的每个表单并单独保存它们:
https://docs.djangoproject.com/en/dev/topics/forms/modelforms/# saving-objects-in-the-formset
formset.save()
will return a list of instances saved.You could also go through each form within the formset and save them individually with:
https://docs.djangoproject.com/en/dev/topics/forms/modelforms/#saving-objects-in-the-formset
如果我理解正确,您想要访问保存的模型实例,可以简单地通过以下方式完成:
If I'm understanding correctly, you want access to the saved model instance, that can be done simply with: