摘要:
1、获取Cookie: 1 request.COOKIES['key'] 2 request.get_signed_cookie(key, default=RAISE_ERROR, salt='', max_age=None) 3 参数: 4 default: 默认值 5 salt: 加密盐 6 m 阅读全文
摘要:
定义一个分页类,封装起来,保存到目录下面方便调用:pagination.py 具体完整代码: from django.utils.safestring import mark_safe #分页类 class Page(object): def __init__(self,current_page,d 阅读全文