视频播放页面接口开发 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
django解决跨域问题 1 使用第三方模块django-cors-headers 1.1 安装 pip install django-cors-headers 1.2 配置 INSTALLED_APPS = [ 'corsheaders', ] MIDDLEWARE = [ 'corsheader ...
分类:
其他好文 时间:
2020-11-23 12:10:55
阅读次数:
6
DJango中提供了“信号调度”,用于在框架执行操作时解耦 一些动作发生的时候,系统会根据信号定义的函数执行响应的操作 一 Django中内置的signal Model_signals pre_init # Django中的model对象执行其构造方法前,自动触发 post_init # Djang ...
分类:
其他好文 时间:
2020-11-21 12:35:56
阅读次数:
7
1.models.py class Users(models.Model): password = models.CharField(max_length=100,verbose_name='用户名') account = models.CharField(max_length=100,verbos ...
分类:
数据库 时间:
2020-11-21 12:09:40
阅读次数:
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
Django中-事务操作 事务干货:https://zhuanlan.zhihu.com/p/93067082 事务使用:https://www.cnblogs.com/oklizz/p/11240212.html \(~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ...
分类:
其他好文 时间:
2020-11-19 13:01:14
阅读次数:
19
首先新建一个users应用,编写这个应用的models类。 from django.contrib.auth.models import AbstractUser class UserProfile(AbstractUser): ''' 用户 ''' name=models.CharField(ma ...
分类:
其他好文 时间:
2020-11-19 12:52:05
阅读次数:
10
#1.一些重要概念 https://www.cnblogs.com/xiaonq/p/8932266.html ##1.1web容器 什么是web容器 1.web容器是帮助我们部署java丶php丶python丶vue等项目的 作用(处理请求,返回数据) 1.第一,帮助django服务端处理客户端连 ...
分类:
其他好文 时间:
2020-11-19 12:43:44
阅读次数:
14
1、HttpRequest对象的属性和方法 http请求:HttpRequest对象 def seetl(request): request.path # 请求页面全路径(不包括域名)request.get_full_path()请求路径中会加入相关参数(针对于GET请求) request.meth ...
分类:
其他好文 时间:
2020-11-18 12:41:46
阅读次数:
7
1、什么是Django Django是python下的一个重量级的一个web框架,Django也是一个有python语言开发的一个开源框架,Django 采用了 MVT 的软件设计模式,即模型(Model),视图(View)和模板(Template)。使用 Django,只要很少的代码,Python ...
分类:
其他好文 时间:
2020-11-17 12:16:19
阅读次数:
5