上一页 1 ··· 10 11 12 13 14
摘要: 1. {{ 变量名 }} def func(request): return render(request, "index.html", {'current_user': "alex"}) index.html <html> .. <body> <div>{{current_user}}</div> 阅读全文
posted @ 2017-11-08 21:17 前路~ 阅读(168) 评论(0) 推荐(0) 编辑
摘要: app下views.py 获取前端HTML数据的一些方法 def func(request): # request.method GET / POST # http://127.0.0.1:8009/home?nid=123&name=cqcq # request.GET.get('username 阅读全文
posted @ 2017-11-08 21:13 前路~ 阅读(615) 评论(0) 推荐(0) 编辑
摘要: Django请求生命周期 -> URL对应关系(匹配) -> 视图函数 -> 返回用户字符串 -> URL对应关系(匹配) -> 视图函数 -> 打开一个HTML文件,读取内容 1.浏览器客户端请求首先到达项目名文件夹下的urls.py 2.经过路由分发会到app下的urls.py 3.然后到处理函 阅读全文
posted @ 2017-11-08 21:07 前路~ 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 配置文件文档 https://docs.djangoproject.com/en/2.0/ref/ 1、添加APP的设置 INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.content 阅读全文
posted @ 2017-11-08 20:56 前路~ 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 网页中文文档 http://python.usyiyi.cn/documents/django_182/topics/db/models.html Django性能测试工具 https://github.com/jazzband/silk/blob/master/README.md 官网文档 htt 阅读全文
posted @ 2017-11-08 20:48 前路~ 阅读(193) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14