python-基于多个模型的Django表单
作者:互联网
如果我在Django应用程序中有两个这样的模型:
class Author(models.Model):
name = models.CharField(max_length=100)
class Book(models.Model):
author = models.ForeignKey(Author)
title = models.CharField(max_length=100)
如何创建允许您同时添加作者和书本的单个表单.如果系统中存在作者,那么我可以简单地显示书籍表格并将其链接到作者,但是通常我需要允许我的用户同时创建书籍和作者.
我怎样才能做到这一点?
谢谢.
解决方法:
您可以编写一个自定义表单,该表单将检查作者在系统中是否存在,使用现有表单,如果不存在,则使用提供的名称创建新表单.
class CustomForm(forms.ModelForm):
author = forms.CharField()
def save(self, commit=True):
author, created = Author.objects.get_or_create(name=self.cleaned_data['author'])
instance = super(CustomForm,self).save(commit=commit)
instance.author = author
if commit:
instance.save()
return instance
class Meta:
model=Book
不确定此代码是否有效,但我想它可以解释我的想法.
标签:django-forms,python,django,django-models 来源: https://codeday.me/bug/20191102/1989741.html