摘要:
```python class Pagination(object): def __init__(self,current_page,all_count,per_page_num=2,pager_count=11): """ 封装分页相关数据 :param current_page: 当前页 :param all_count: 数据库中的数据总条数 :param per_page_num: 每页显 阅读全文
摘要:
django中Form组件常用内置字段 简单登录 register.html views视图 注册判断 单选radio 单选selct 单选checkbox 多选select 多选checkbox 阅读全文