一 URL补充

二 Views试图函数

一 URL补充

1 MTV模型

2  django建立流程(用命令版)

(1)django-admin startproject projectname

(2)python manage.py startapp appname

(3)python manage.py runserver IP PORT

3 url配置(urls.py)

功能:建立起URL与视图函数的映射关系。

url:http://127.0.0.1:8080/blog/articles/2003/05?a=1&b=2

url(正则表达式(规则),视图函数)      匹配字符串:用户输入的url对应的路径:“/blog/articles/2003/05”

 注意点:
       (1) 出现覆盖现象的情况,匹配第一个url
       (2) 无名分组   url(r'^articles/(\d{4})/(\d{2})$', views.year_month),  # year(requset,1990,12)   按位置传参数
       (3) 有名分组   url(r'^articles/(?P<year>\d{4})/(?P<month>\d{2})$', views.year_month),  # year     (requset,year=1990,month=12)   按位置传参数
       (4) url(r'^blog/', include('blog.urls'))分发

取值:request.POST.get("user")

获取form表单提交的方法:request.method=="POST"
  有return 就不往下走  可以去掉else

模板语法两种{{}}

渲染了后再往前端发   render 函数   render函数可以检测模板语法

点击提交  走url  走views  走render函数接着渲染模板(看有无别名)    发往前端

二 视图函数

    一定包含两个对象

   request------->,请求信息
    HttpResponse------->响应内容
    render 一个HttpResponse函数也存在render函数里
    get  请求的数据放在路径后面
 
     重点 request 里面的哪些信息:
     request.GET:GET请求的数据()
     request.POST:POST请求的数据()
     request.method:请求数据的方式()主要get或者post
     request.path:请求路径()与数据无关 
      根目录 :/(判断根目录

request.get_full_path()拿到路径后面所有的数据(包括路径)
      取一个键下的多个值:request.POST.getlist("hobby")

render 函数  render(request, template_name[, context]) 第三个参数是上下文对象
      redirect 函数 
 
      对比 render与redirect 的区别:
     redirect:发送第二次请求,url更新啦
      render:  直接返回一个页面内容但是url没有变化(未发送第二次请求)(涉及页面跳转时不用)

一个小例子:注:跳转是前后都要加/ ,返回时不用加/  图片用到了分发  例子里没有用到分发

---Model

from django.db import models

# Create your models here.
import pymysql
conn = pymysql.connect(host='', port=3306, user='root', passwd='', db='day66')
cur = conn.cursor()
cur.executemany("insert into userinfo values(%s,%s)", [( "yuan", ""),
( "alex", ""),
("egon", "")]) conn.commit()
#关闭指针对象
cur.close()
#关闭连接对象
conn.close()

model代码

---views

from django.shortcuts import render,HttpResponse,redirect

# Create your views here.
def login(request):
print(request.POST) # 这个是获取form表单的提交方法
if request.method=="POST":
print(request.POST)#这个是获取form表单的提交方法
username=request.POST.get("user")
password=request.POST.get("pwd")
if username=="frank" and password=="":
return redirect("/index.html/")#跳转到个人主页
# else:#else 可以去掉啦
# name="frank"
return render(request, "login.html")
def register(request):
if request.method=="POST":
username=request.POST.get("user")
password=request.POST.get("pwd")
# hobby=request.POST.getlist("hobby")#一个键获得多个值时用这种方法
import pymysql
conn = pymysql.connect(host='', port=3306, user='root', passwd='', db='day66')
cur = conn.cursor()
SQL = "insert into userinfo (name,pwd)values(%s,%s)";
rows = cur.execute(SQL,(username, password))
conn.commit()
print (rows)#返回影响的行数
if rows :
cur.close()
conn.close()
return redirect("/login.html/")
else:
return render(request,"register.html")
def index(request):
name="frank"#写死了
return render(request,"index.html",{"n":name})#可以使用session得到

视图函数

Template

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
<style>
.cc{
margin-left: 250px;
margin-top: 200px;
}
</style>
</head>
<body> <div class="cc">
<h1>注册页面</h1>
<form action="{% url 'register' %}" method="post">
<p> 姓名:<input type="text" name="user"></p>
<p> 密码:<input type="password" name="pwd"></p>
<!--<p> 爱好:-->
<!--<input type="checkbox" name="hobby" value="basketball">篮球-->
<!--<input type="checkbox" name="hobby" value="shuangseqiu ">双色球-->
<!--<input type="checkbox" name="hobby" value="football">足球--> <!--</p>-->
<p><input type="submit"></p></div>
</form> </body>
</html>

注册页面

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
<style>
.cc{
margin-top: 200px;
margin-left: 300px;
}
</style>
</head>
<body>
<div class="cc">
<h1>登陆页面</h1>
<form action="{% url "login" %}" method="post">
<p>姓名:<input type="text" name="user"></p>
<p>密码:<input type="password" name="pwd"></p>
<p><input type="submit"></p>
</form>
</div>
</body>
</html>

登陆页面

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
<style>
.cc{
margin-right: 200px; }
</style> </head>
<body>
<div class="cc">
<h1>hello{{ n }} </h1>
<h1>欢迎回来</h1>
</div>
</body>
</html>

个人中心

    

Django之views的更多相关文章

  1. Python Django 之 Views HttpRequest HttpReponse

    一.Python Django 之 Views 数据交互 http请求中产生两个人核心对象: http请求:HttpRequest对象 http响应:HttpReponse对象 所在位置django. ...

  2. [Django笔记] views.py 深入学习

    views.py 是django MTV 中的主要逻辑层,相当于MVC中的 Controller 以下的实例都基于这样一个路由表: urlpatterns = [ url(r'^(index)?$', ...

  3. Django之views系统

    Django的View(视图)简介 一个视图函数(类),简称视图,是一个简单的Python 函数(类),它接受Web请求并且返回Web响应. 响应可以是一张网页的HTML内容,一个重定向,一个404错 ...

  4. Django Class Views

    一.Base views View class django.views.generic.base.View 主要的基于类的基本视图.所有其他基于类的视图都从这个基类继承而来.它不是一个通用的视图,因 ...

  5. Django中views笔记

    reverse反解析 #路由中定义namespace.name,reverse可将其转换为url url = reverse('namespace:name') return redirect(url ...

  6. django中views中方法的request参数

    知其然亦要知其所以然 views每个方法的参数都是request,那么问题来了,request为何物? 首先,几乎每个方法都是取数据(无论是从数据库,还是从第三方接口),然后进行一定的处理,之后传给前 ...

  7. Django之views视图函数

    views视图函数属于MTV中逻辑处理的部分视图函数包含着两个对象,HttpRequest对象和HttpResponse对象 一.HttpRequest对象 HttpRequest对象在Django中 ...

  8. 关于django Class-based views的理解

    django是mvt模式,其中v就是这个显示逻辑部分,简单来讲,view函数可以说是接收request,然后处理,返回response的主体函数. 对于一些简单的逻辑关系,可以用直接用函数模式来进行处 ...

  9. Django的views视图系统

    老师的博客:http://www.cnblogs.com/liwenzhou/articles/8305104.html 以看老师的博客为主 一个视图函数(类),简称视图,是一个简单的Python 函 ...

随机推荐

  1. 实验吧 貌似有点难 伪造ip

    解题链接: http://ctf5.shiyanbar.com/phpaudit/ 解答: 点击View the source code —>代码显示IP为1.1.1.1即可得到KEY—> ...

  2. 2017 ACM/ICPC Asia Regional Qingdao Online解题报告(部分)

    HDU 6206 Apple 题意: 给出四个点的坐标(每个点的坐标值小于等于1,000,000,000,000),问最后一个点是否在前三个点组成的三角形的外接圆内,是输出Accept,否输出Reje ...

  3. 模块,import,from xxx import xxx

    一,模块 模块就是一个包含了python定义和声明的文件,文件名就是模块的名字加上.py后缀,总体来说,import加载的模块一共分成四个通用的类别: 1,使用python编写的py文件 2,已被变异 ...

  4. [转]Material使用08 MdDialogModule、MdAutocompleteModule

    本文转自:https://www.cnblogs.com/NeverCtrl-C/p/8125346.html 1 MatDialog 1.1 简要描述 MdDialog是一个服务,可以利用它来打开一 ...

  5. hash table (youtube 2)

    https://www.youtube.com/watch?v=jEdaduyLLqY

  6. Java - BlockingQueue

    https://juejin.im/post/5aeebd02518825672f19c546 https://www.infoq.cn/article/java-blocking-queue blo ...

  7. jsp使用servlet实现用户登录 及动态验证码

    在进行表单设计中,验证码的增加恰恰可以实现是否为“人为”操作,增加验证码可以防止网站数据库信息的冗杂等... 现在,我将讲述通过servlet实现验证码: 验证码作为一个图片,在页面中为“画”出来的, ...

  8. centos 多个yum源,系统怎么选择

    yum配置文件: /etc/yum.conf pkgpolicy:包的策略.一共有两个选项,newest和last,这个作用是如果你设置了多个repository,而同一软件在不同的repositor ...

  9. Salesforce的公式和验证规则

    公式 在Salesforce中,有些功能不需要从数据库中直接读取的数据,而是基于这些数据之间的关系来做出判断.这种情况下就要用到"公式"功能. 公式的概念和Excel中的公式类似, ...

  10. Android NDK编译之undefined reference to 'JNI_CreateJavaVM'

    利用Android NDK编译动态库,在C文件中调用了两个JNI函数:JNI_GetDefaultJavaVMInitArgs和JNI_CreateJavaVM.编译的时候始终报以下错误: XXX: ...