0
私は次のように記録(ページあたり10)ページ区切りの形式のビューを持っている:Django RESTのレコードの現在のページを処理するには?
class Foo(models.Model):
bar = models.BooleanField(db_index=True)
user = models.ForeignKey(User, db_index=True, editable=False)
baz = models.CharField(max_length=120)
created = models.DateTimeField(db_index=True, auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
class UserSerializer(ModelSerializer):
class Meta:
model = User
fields = ('id', 'username')
class FooSerializer(ModelSerializer):
user = UserSerializer()
class Meta:
model = Foo
class FooPagination(PageNumberPagination):
page_size = 10
class FooView(ListAPIView):
serializer_class = FooSerializer
pagination_class = FooPagination
def get_queryset(self):
user = self.request.user
'''
Do something here (or when page is requested) with each record on
the current page.
'''
return Foo.objects.filter(bar=true, user=user).order_by('created')
は、どのように私は、現在のページにあるフー・レコードを処理することができますか?
GenericAPIViewの代わりに "def foo_decorator(obj、queryset、request)"とListAPIViewを使用しました。 – tyebillion
デコレータが動作していますが、JSON結果フィールドにデータが戻ってきません。 – tyebillion
...カウントがゼロではないにもかかわらず。 – tyebillion