web-dev-qa-db-ja.com

django formはキーワード引数に複数の値を取得しました

次のような単純なモデルがあります。

RATING_CHOICES = Zip(range(1, 6), range(1, 6))
class Rating(models.Model):

    value = models.IntegerField(choices=RATING_CHOICES)
    additional_note = models.TextField(null=True, blank=True)
    from_user = models.ForeignKey(User, related_name='from_user')
    to_user = models.ForeignKey(User, related_name='to_user')
    shared_object = models.ForeignKey(ObjectDetail, null=True, blank=True)
    dtobject = models.DateTimeField(auto_now_add=True)

上記のモデルから、forms.pyで次のようにモデルフォームを生成します。

class RatingForm(ModelForm):

     class Meta:
          model = Rating
          exclude = ('from_user', 'dtobject',
                     'shared_object')

私のURLでは、次のことを試します。

url(r'^rate/(?P<form_type>[\w]+)/(?P<oid>\d+)/(?P<oslug>[\w-]+)/$', 'rating_form', name='rating_form'),                     

そして、私の見解では、次のとおりです。

def rating_form(form_type = None, oid = None, oslug=None):

    print form_type
    form = RatingForm(data=request.POST or None)

    if request.POST and form.is_valid():
           form.save()
        return HttpResponseRedirect("/")
    else:
        return render(request, "share.html", {'form' : form })

これを行うと、次のエラーが発生します。

rating_form()は、キーワード引数 'form_type'に対して複数の値を取得しました

さらなる詳細:

Request Method: GET
Request URL:    http://127.0.0.1:8000/rate/lending/3/random-stuff/
Django Version: 1.4.1
Exception Type: TypeError
Exception Value:    
rating_form() got multiple values for keyword argument 'form_type'
Exception Location: /Library/Python/2.7/site-packages/Django/contrib/auth/decorators.py in _wrapped_view, line 20
Python Executable:  /usr/bin/python

何が悪いのですか?

31
whatf

ビューの最初の引数はrequestである必要があります

119
second