1

私はこのtastypieリソースを持っています:

class BlogPostResource(ModelResource):
    comments = fields.ToManyField('comments.api.CommentResource', 'comments', full=True)

ブログ エンドポイント/api/v1/blog/13は、次の応答を返します。

{
  id: 13,
  text: 'blog example',
  comments: [{id: 1, comment: "1"},{id: 2, comment: "2"}, ...]
}

コメントが次のようにページ付けされることを期待していました。

{
  id: 13,
  text: 'blog example',
  comments:{
    meta: {
      limit: 20,
      next: "/api/v1/comment/?offset=20&limit=20&format=json", 
      offset: 0,
      previous: null,
      total_count: 36
    },
    objects: [{id: 1, comment: "1"},{id: 2, comment: "2"}, ...]
  }
}

コメントを改ページして、期待どおりの応答を得るにはどうすればよいですか?

4

0 に答える 0