1 Star 0 Fork 0

西柚/LearningMaterials

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
#商品评论分页接口.txt 635 Bytes
一键复制 编辑 原始数据 按行查看 历史
西柚 提交于 2020-09-10 20:16 . master
#商品评论分页接口
class ContentList(APIView):
def get(self,request):
# 当前页
page = int(request.GET.get('page',1))
# 一页有几条数据
size = int(request.GET.get('size',1))
# 获取商品id
gid = int(request.GET.get('gid',1))
# 定义从哪开始切片
data_start = (page-1) * size
# 定义在哪里结束切片
data_end = page * size
# 查询数据
contentlist = Comment.objects.filter(gid=gid).order_by('-id')[data_start:data_end]
# 查询总数据量
count = Comment.objects.count()
# 序列化操作
content_ser = CommentSer(contentlist,many=True)
return Response({
'total':count,
'data' :content_ser.data,
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gutying/LearningMaterials.git
git@gitee.com:gutying/LearningMaterials.git
gutying
LearningMaterials
LearningMaterials
master

搜索帮助