视图说明 1. 两个基类 1)APIView rest_framework.views.APIView APIView是REST framework提供的所有视图的基类,继承自Django的View父类。 APIView与View的不同之处在于: 传入到视图方法中的是REST framework的R ...
分类:
其他好文 时间:
2020-11-25 12:30:41
阅读次数:
6
1.docker基本原理 https://www.cnblogs.com/xiaonq/p/10241045.html 2.ubuntu安装docker 2.1 安装docker # 1.卸载旧版本 sudo apt-get remove docker docker-engine docker.io ...
分类:
系统相关 时间:
2020-11-24 13:00:30
阅读次数:
26
视频播放页面接口开发 1.视频播放页面接口开发 1.1 course/urls.py 添加路由 router.register(r'sections', views.SectionsViewSet) 1.2 course/serializers.py 写序列化器 from rest_framewor ...
分类:
其他好文 时间:
2020-11-24 12:31:35
阅读次数:
9
#department ##input 部门新增或者修改 <form action="/department/saveOrUpdate.do" method="post"> <input type="hidden" name="id" value="${department.id}"> <input ...
分类:
Web程序 时间:
2020-11-23 12:15:32
阅读次数:
11
目录 1.定位自带密码设置函数/usr/local/python3/lib/python3.6/site-packages/django/contrib/auth/views.py @sensitive_post_parameters() @csrf_protect @login_required ...
分类:
其他好文 时间:
2020-11-21 11:42:26
阅读次数:
9
组件路径:/views/home/components/bottom.vue 示例: <template> <div> <h1>底部信息</h1> <div>{{copyright}}</div> </div> </template> <script> export default { name: ...
分类:
Web程序 时间:
2020-11-20 12:13:40
阅读次数:
17
1.微博绑定用户接口 1.1 oauth/urls.py 中添加路由 urlpatterns = [ path('weibo/binduser/', views.OauthWeiboBindUser.as_view()), # /oauth/weibo/callback/ ] 1.2 oauth/v ...
分类:
其他好文 时间:
2020-11-12 13:56:22
阅读次数:
5
1.微博绑定用户接口 1.1 oauth/urls.py 中添加路由 urlpatterns = [ path('weibo/binduser/', WeiboUser.as_view()), # /oauth/weibo/callback/ ] 1.2 oauth/views.py 中添加试图函数 ...
分类:
其他好文 时间:
2020-11-07 15:32:47
阅读次数:
9
恢复内容开始 启动项目 一 选择python-terminal python manage.py runserver 或者 直接启动按钮 2.创建具体应用(app01文件) 文件下创建views.py视图文件 该文件用来编写函数 功能 2.配置路由系统(urls-->函数) from app01 i ...
分类:
编程语言 时间:
2020-11-01 22:27:10
阅读次数:
28
3.2 settings.py 外加跨域 """ Django settings for django01 project. Generated by 'django-admin startproject' using Django 2.2. For more information on this ...
分类:
其他好文 时间:
2020-11-01 21:33:22
阅读次数:
23