发布于2019-08-22 15:41 阅读(1389) 评论(0) 点赞(3) 收藏(2)
django中请求处理方式有2种:FBV 和 CBV
FBV(function base views) 就是在视图里使用函数处理请求。
看代码:
urls.py
1 2 3 4 5 6 7 8 | from django.conf.urls import url, include # from django.contrib import admin from mytest import views urlpatterns = [ # url(r‘^admin/‘, admin.site.urls), url(r‘^index / ‘, views.index), ] |
views.py
1 2 3 4 5 6 7 8 9 | from django.shortcuts import render def index(req): if req.method = = ‘POST‘: print (‘method is :‘ + req.method) elif req.method = = ‘GET‘: print (‘method is :‘ + req.method) return render(req, ‘index.html‘) |
注意此处定义的是函数【def index(req):】
index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 | <!DOCTYPE html> <html lang = "en" > <head> <meta charset = "UTF-8" > <title>index< / title> < / head> <body> <form action = " " method=" post"> < input type = "text" name = "A" / > < input type = "submit" name = "b" value = "提交" / > < / form> < / body> < / html> |
上面就是FBV的使用。
CBV(class base views) 就是在视图里使用类处理请求。
将上述代码中的urls.py 修改为如下:
1 2 3 4 5 6 | from mytest import views urlpatterns = [ # url(r‘^index/‘, views.index), url(r‘^index / ‘, views.Index.as_view()), ] |
注:url(r‘^index/‘, views.Index.as_view()), 是固定用法。
将上述代码中的views.py 修改为如下:
1 2 3 4 5 6 7 8 9 10 11 | from django.views import View class Index(View): def get( self , req): print (‘method is :‘ + req.method) return render(req, ‘index.html‘) def post( self , req): print (‘method is :‘ + req.method) return render(req, ‘index.html‘) |
注:类要继承 View ,类中函数名必须小写。
两种方式没有优劣,都可以使用。
标签:base text onf div spa 2种 inpu site .py
原文:http://www.cnblogs.com/wumingxiaoyao/p/6513981.html
作者:滴水
链接:https://www.pythonheidong.com/blog/article/52521/97016f7024be39099ba7/
来源:python黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 python黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-1
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!