摘要:
# 【一】CBV源码分析 ```python # 视图层 from django.shortcuts import render, HttpResponse from django.views import View class CBVTest(View): # 通过调度(dispatch)分发请求 阅读全文
posted @ 2023-07-31 12:08
Chimengmeng
阅读(22)
评论(0)
推荐(0)
摘要:
# 【一】Django Rest_Framework ## 【1】核心思想 > 核心思想: 缩减编写api接口的代码 ## 【2】DRF介绍 - Django REST framework是一个建立在Django基础之上的Web 应用开发框架,可以快速的开发REST API接口应用。 - 在REST 阅读全文
posted @ 2023-07-31 12:07
Chimengmeng
阅读(70)
评论(0)
推荐(0)
摘要:
# 【一】Web应用模式 在开发Web应用中,有两种应用模式: ## 【1】前后端不分离  ## 【2】前后端分离 阅读全文
posted @ 2023-07-31 12:04
Chimengmeng
阅读(23)
评论(0)
推荐(0)