码迷,mamicode.com
首页 > 其他好文 > 详细

CBV

时间:2019-09-03 09:26:21      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:cut   html   path   from   class   turn   style   视图   col   

1、基于类的视图(推荐)

from django.shortcuts import render,HttpResponse
from django.views import View

# Create your views here.


class TestView(View):

    def get(self, request):
        return render(request, "test.html")

    def post(self, request):
        return HttpResponse("Post")
path(test/, views.TestView.as_view()),

2、方法

 http_method_names = [get, post, put, patch, delete, head, options, trace]
get‘, post‘, put‘, patch‘, delete‘最常用
put和patch都是修改数据时使用,区别 put全部修改 patch部分修改

CBV

标签:cut   html   path   from   class   turn   style   视图   col   

原文地址:https://www.cnblogs.com/wt7018/p/11450816.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!