def meta(self) -> MutableMapping:
"""
Return meta object of paginator.
* *total-resources*
The total number of resources in the collection
* *page-limit*
The number of resources on a page
* *page-offset*
The offset of the current page
"""
return {
'total-resources': self.total_resources,
'page-limit': self.limit,
'page-offset': self.offset
}
评论列表
文章目录