2013-08-14 21 views
6

Używam Django's Generic Relations w celu zdefiniowania modelu głosowania dla modeli pytań i odpowiedzi.Błąd Django Generic Relations: "nie można rozwiązać słowa kluczowego" content_object "w polu"

Oto mój głos model:

models.py

class Vote(models.Model): 
    user_voted = models.ForeignKey(MyUser) 
    is_upvote = models.BooleanField(default=True) 

    # Generic foreign key 
    content_type = models.ForeignKey(ContentType) 
    object_id = models.PositiveIntegerField() 
    content_object = generic.GenericForeignKey('content_type', 'object_id') 

    class Meta: 
     unique_together = ('content_type', 'user_voted') 



views.py

 user_voted = MyUser.objects.get(id=request.user.id) 
     object_type = request.POST.get('object_type') 

     object = None; 
     if object_type == 'question': 
      object = get_object_or_404(Question, id=self.kwargs['pk']) 
     elif object_type == 'answer': 
      object = get_object_or_404(Answer, id=self.kwargs['pk']) 

     # THIS LAST LINE GIVES ME THE ERROR 
     vote, created = Vote.objects.get_or_create(user_voted=user_voted, content_object=object) 



I wtedy ten błąd:

FieldError at /1/ 
Cannot resolve keyword 'content_object' into field. Choices are: answer, content_type, id, is_upvote, object_id, question, user_voted 



Kiedy wydrukować "obiekt" do konsoli Django, drukuje "Pytanie 1" obiekt. Więc nie rozumiem, dlaczego linia „content_object = obiekt” daje mi błąd dziedzinie ...

pomysłów: (((???

Dzięki

Odpowiedz

14

content_object jest rodzajem przeczytane -tylko atrybut, który będzie pobierać obiektu określonego przez pola content_type i object_id należy wymienić kod brzmienie:.

from django.contrib.contenttypes.models import ContentType 
type = ContentType.objects.get_for_model(object) 
vote, created = Vote.objects.get_or_create(user_voted=user_voted, content_type=type, object_id=object.id) 

Edit: Django documentation wyraźnie zaznacza:

Due to the way GenericForeignKey is implemented, you cannot use such fields directly with filters (filter() and exclude(), for example) via the database API. Because a GenericForeignKey isn’t a normal field object, these examples will not work:

# This will fail 
>>> TaggedItem.objects.filter(content_object=guido) 
# This will also fail 
>>> TaggedItem.objects.get(content_object=guido)