原生python实现分页器
原理:分页的底层原理就是利用了sql命令中的limit关键字,通过sql语句查询数据。构建分页器# paginator.pyfrom utils.dataBase import MySQLclass Paginator: """ 分页器 """ def __init__(self, total=0, current_page=1, page_size=1): self.total = int(tot