上一页 1 ··· 9 10 11 12 13 14 下一页
摘要: Cookie 1.如果没有cookie,那么所有的网站都不能登录 2.客户端浏览器上的文件,keyvalues形式存储的,类似字典 3.登录时首先要获取Cookie,Cookie中没有服务器需要的字符串时,用户必须发送用户名密码,认证成功之后,服务器会在客户端Cookie中插入一段字符串,下次验证时 阅读全文
posted @ 2017-11-08 21:52 前路~ 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 首先创建一个制作page的工具类 utils --page_make.py class Page(): ... class Page: def __init__(self,request_page,all_count,path_info,every_page_count=10,every_page_ 阅读全文
posted @ 2017-11-08 21:48 前路~ 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 一些HTML方法 {{item.event_start | date:"Y-m-d H:i:s"}} {{bio | truncatewords:"30"}} {{ my_list | first | upper}} {{name | lower}} Django提供了自定义SIMPLE_TAG 在 阅读全文
posted @ 2017-11-08 21:44 前路~ 阅读(1024) 评论(0) 推荐(0) 编辑
摘要: 对于一下3个HTML页面 url(r'^templates1/', views.templates1), url(r'^templates2/', views.templates2), url(r'^templates3/', views.templates3), url(r'^templates1 阅读全文
posted @ 2017-11-08 21:41 前路~ 阅读(120) 评论(0) 推荐(0) 编辑
摘要: requests对象是由类创建的 from django.core.handlers.wsgi import WSGIRequest --> 类 request.environ中封装了请求的所以信息,environ是一个字典 Django将经常使用的某些值,做了便捷处理 1.使用Django便捷功能 阅读全文
posted @ 2017-11-08 21:36 前路~ 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 不使用命名空间,且两个APP某条url使用相同的name属性 app01_urls.py 1 urlpatterns = [ 2 url(r'aaa/$', views.app01_aaa, name="index"), 3 ] app02_urls.py 1 urlpatterns = [ 2 u 阅读全文
posted @ 2017-11-08 21:35 前路~ 阅读(3490) 评论(0) 推荐(0) 编辑
摘要: 创建多对多: 方式一:自定义关系表 class Host(models.Model): nid = models.AutoField(primary_key=True) hostname = models.CharField(max_length=32,db_index=True) ip = mod 阅读全文
posted @ 2017-11-08 21:34 前路~ 阅读(1077) 评论(0) 推荐(0) 编辑
摘要: 对于{%for i in list%}来说里面都有一个{{forloop.counter}}每次循环一次记一次数 对于{%for i in list%}来说里面都有一个{{forloop.counter0}}每次循环一次记一次数,从零开始 对于{%for i in list%}来说里面都有一个{{f 阅读全文
posted @ 2017-11-08 21:32 前路~ 阅读(174) 评论(0) 推荐(0) 编辑
摘要: select * from tb where id > 1 # 对应关系 models.tb.objects.filter(1id__gt=) models.tb.objects.filter(id=1) models.tb.objects.filter(id__lt=1) 创建类 a.先写类 fr 阅读全文
posted @ 2017-11-08 21:31 前路~ 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1、url(r'^index/', views.index), 函数处理 url(r'^home/', views.Home.as_view()), 类方法处理 2、url(r'^detail-(\d+).html', views.detail), 动态路由,位置参数 <a href="/detai 阅读全文
posted @ 2017-11-08 21:23 前路~ 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 下一页