2

私はdjangoとtastypieに問題があります

次のコードが与えられます。

class CandidatePollResource(ModelResource):
    class Meta:
        queryset = Candidate.objects.all()
        resource_name = "candidate-poll"
        filtering = {"status": ALL }

class Candidate(Profile):
    """
    This profile stores all information about a candidate.
    """
    status = models.CharField(_('status'), max_length=15, blank=True, choices=CANDIDATE_STATUS_CHOICES)

class Profile(models.Model):
    """
    Abstract basic class all profiles should inherit.
    """
    user = models.OneToOneField(CustomUser,related_name='%(class)s',)
    invitationdate = models.DateField(_('invitationdate'), null=True, blank=True)
    confirmationdate = models.DateField(_('confirmationdate'), null=True, blank=True)
    activation_key = models.CharField(_('activation_key'), max_length=32, blank=True)
    # Adding of "class" here is important for this to work. See
    # http://thedjangoforum.com/board/thread/417/reverse-query-name-for-field-clash/?page=1
    created_by = models.ForeignKey(CustomUser, related_name='%(class)s_created', blank=True, null=True)

    objects = ProfileManager()

    class Meta:
        abstract = True

結果セット ( ) をフィルター処理する呼び出しを実行しようとするたびにhttp://localhost:3000/api/v1/candidate-poll/?status__exact=new、常に次のエラーが発生します。

The 'status' field does not allow filtering.

そのフィールドでフィルタリングを有効にするにはどうすればよいですか?

4

2 に答える 2

4

あなたの構文は正確ではないと思います。それ以外の:

filtering = {"status": ("exact", "in",), }

試す:

filtering = {"status": [ "exact", "in" ] }

それでもうまくいかない場合は、次のことを試してください。

filtering = {"status": ALL }

そしてそこから進みます。ALLすべてを許可する必要があるため、機能しない場合は、問題が別の場所にあることを意味します。

詳細については、Tastypie のドキュメントをご覧ください。

于 2012-09-05T16:54:43.207 に答える