在Django类基础CreateView中,如何初始化中间模型

时间:2015-07-01 11:14:27

标签: django-views foreign-key-relationship django-class-based-views manytomanyfield

我有三个模型,PiItem是Pi的接口,而项目模型是“通过”。

现在我想在Django CreatedView类中使用新的Pi实例和新的PiItem实例创建一个新的Items实例。

不知怎的,我不断收到错误消息

*

  

***** / product / get()中的MultipleObjectsReturned返回多个PiItem *****

*

任何帮助都将受到高度赞赏 致谢

这是模型

class Pi(models.Model):
    company = models.ForeignKey(CompanyProfile, related_name='pi', null=True)
    contact = models.ForeignKey(Contact, null=True)

    def __unicode__(self):
        #return u'%s, %s' %(self.company.companyprofile_name, self.reference_id)
        return u'%s' %(self.company.companyprofile_name)



class Items(models.Model):
    product_id = models.CharField("Product ID",max_length=50, blank=False, null=True, unique=True)
    in_pi = models.ManyToManyField(Pi, through='PiItem', blank=True)

    def __unicode__(self):
        return self.product_id


class PiItem(models.Model):
    item_name= models.ForeignKey(Items)
    pi = models.ForeignKey(Pi)

    def __unicode__(self):
        return self.pi.reference_id

这是我的view.py

from django.views.generic.edit import CreateView
from pi.models import Items, PiItem, Pi
from django.shortcuts import get_object_or_404

class AddItemView(CreateView):

    context_object_name = 'Product_list'
    model = Items
    template_name = "product.html"
    fields = "__all__"

    def get_initial(self):
        in_pi = get_object_or_404(PiItem)
        return {
            'in_pi':in_pi
        }

这是模板

{% extends 'base.html' %}


{% load crispy_forms_tags %}

{% block pi %}

<form action="" method="post">{% csrf_token %}
    {{ form|crispy }}
    {{ form.get_form_class() }}
    <input type="submit" value="Create" />
</form>

1 个答案:

答案 0 :(得分:0)

问题最有可能在这里:

in_pi = get_object_or_404(PiItem)

您需要通过将其他参数(例如foreigk键)传递给每个相关模型来过滤PiItem对象,例如:

in_pi = get_object_or_404(PiItem, item_name=something1, pi=something2)