RestFul(番外):类视图更适合restful

视图函数可分为函数视图和类视图,对于restful风格的设计来说,类视图更加适合。

(好用的测试工具, 黑屏终端的httpie, chrome的postman, 或者单独的postman, pycharm里tools-Httpclient 里的Test-Restful-Web-Service)

FBV:

function base view

CBV:

  class base view

  - 继承自View: 

class HelloCBV(View):

  -url里面要用views.HelloCBV.as_view()

 

相关推荐