摘要:
一.分页器的函数封装 # 分页计算最小页和最大页 def page_list_return(total, current=1): ''' 分页,返回本次分页的最小页数和最大页数列表 :param total: :param current: :return: ''' min_page = curre 阅读全文
摘要:
一. model 1 from django.db import models 2 3 4 # Create your models here. 5 class MenuInfo(models.Model): 6 parent = models.ForeignKey('MenuInfo', blan 阅读全文