[我已经在Django users | Google Groups发布了此内容。]
使用inline formset docs中的示例,我能够 编辑 属于特定模型的对象(使用 modelforms)。我一直在尝试遵循相同的模式 使用内联表单集 创建 新对象,但一直无法使用 清楚我的脑袋,为此目的提出一个有效的观点。
使用与上述链接相同的示例,我将如何进行 创建“作者”模型的新实例及其相关内容 “书”对象?
答案 0 :(得分:36)
首先,创建一个作者模型表单。
author_form = AuthorModelForm()
然后创建一个虚拟作者对象:
author = Author()
然后使用虚拟作者创建内联formset,如下所示:
formset = BookFormSet(instance=author) #since author is empty, this formset will just be empty forms
将其发送到模板。将数据返回到视图后,您将创建作者:
author = AuthorModelForm(request.POST)
created_author = author.save() # in practice make sure it's valid first
现在将内联formset与新创建的作者挂钩,然后保存:
formset = BookFormSet(request.POST, instance=created_author)
formset.save() #again, make sure it's valid first
编辑:
要在新表单上没有复选框,请执行以下操作:
{% for form in formset.forms %}
<table>
{% for field in form %}
<tr><th>{{field.label_tag}}</th><td>{{field}}{{field.errors}}</td></tr>
{% endfor %}
{% if form.pk %} {# empty forms do not have a pk #}
<tr><th>Delete?</th><td>{{field.DELETE}}</td></tr>
{% endif %}
</table>
{% endfor %}
答案 1 :(得分:36)
我实际上想对nbv4的解决方案提出一个小调整:
假设您没有在if-else语句之外创建空的created_author,因此需要将formset嵌套在author_form.is_valid()中,以避免在author_form无效时出现运行时错误(因此没有created_author是实例化)。
而不是:
if request.method == 'POST':
author_form = AuthorModelForm(request.POST)
if author_form.is_valid():
created_author = author_form.save()
formset = BookFormSet(request.POST, instance=created_author)
if formset.is_valid():
formset.save()
return HttpResponseRedirect(...)
else:
...
执行以下操作:
if request.method == 'POST':
author_form = AuthorModelForm(request.POST)
if author_form.is_valid():
created_author = author_form.save(commit=False)
formset = BookFormSet(request.POST, instance=created_author)
if formset.is_valid():
created_author.save()
formset.save()
return HttpResponseRedirect(...)
else:
...
此版本避免在book_formset有机会验证之前提交created_author。用于纠正的用例是有人用无效的BookFormSet填写有效的AuthorForm并继续重新提交,创建多个没有与之关联的书籍的作者记录。这似乎适用于我的项目跟踪器应用程序(将“作者”替换为“项目”,将“书籍”替换为“角色”)。
答案 2 :(得分:9)
models.py(联系方式)
first = models.CharField(max_length=30)
middle = models.CharField('M.I.',max_length=30, blank=True)
last = models.CharField(max_length=30)
sort_order = models.PositiveIntegerField(default=99)
models.py(链接)
class Link(models.Model):
contact = models.ForeignKey(Contact)
link = models.URLField()
description = models.CharField(max_length=30)
access_date = models.DateField(blank=True,null=True)
forms.py
from django.forms import ModelForm
from contacts.models import Contact
class ContactAjaxForm(ModelForm):
class Meta:
model=Contact
views.py
def edit(request,object_id=False):
LinkFormSet = inlineformset_factory \
(Contact,Link,extra=1)
if object_id:
contact=Contact.objects.get(pk=object_id)
else:
contact=Contact()
if request.method == 'POST':
f=forms.ContactAjaxForm(request.POST, request.FILES, instance=contact)
fs = LinkFormSet(request.POST,instance=contact)
if fs.is_valid() and f.is_valid():
f.save()
fs.save()
return HttpResponse('success')
else:
f = forms.ContactAjaxForm(instance=contact)
fs = LinkFormSet(instance=contact)
return render_to_response('contacts/edit.html', \
{'fs': fs,'f':f,'contact':contact})
这不是基于本书中的示例,而是从我网站上的某些代码编辑而来。我没有对它进行测试,所以可能存在一些bug整体而言应该是可靠的。使用一个空的Contact实例不是建议的方法,但它保存了一些逻辑并且它可以工作。
编辑:添加链接模型,切换到普通外键而不是通用外键,这是令人困惑的