django HttpResponse render redirect用法

  1. 在view模块中导入

     from django.shortcuts import render,redirect, HttpResponse	
    
  2. HttpResponse
    传入一个字符串,返回给浏览器

     	def index (request):
     		return HttpResponse('Hell Django!')
    
  3. render
    可以传递三个参数 request参数,需要渲染的模板template(html参数),向模板传递的参数context

     	def index(request):
     		return render(request,'index.hrml',{'error':'this is a error message'})
    

4.redirect
接受一个URL参数,表示让浏览器跳转去指定的URL

	def index(request):
		return redirct('www.baidu.com')
上一篇:Kali Linux 内核头文件安装


下一篇:(15年)1.对表单输入的数据进行校验,如果用户输入了纯数字,则通过,否则提示用户输入数据或更改数据,并终止提交,同时将光标定位于输入文本框