又好久没写博客了,因为公司在做的东西涉及到业务方面的比较多,没法写。 最近在做下载功能,在网上能找到很多例子,但是都不太好用,自己半研究半照抄,终于搞出来了能用的东西。所以觉得应该记录一下。 下载什么呢?下载Excel。我所维护的几个系统里,有一些数据,需要在页面上导出。以前的做法,我都是用定时任务 ...
分类:
其他好文 时间:
2020-06-26 20:12:34
阅读次数:
46
django 默认时区设置 在Django的配置文件settings.py中,有两个配置参数是跟时间与时区有关的,分别是TIME_ZONE和USE_TZ 如果USE_TZ设置为True时,Django会使用系统默认设置的时区,即America/Chicago, 此时的TIME_ZONE不管有没有设置 ...
分类:
其他好文 时间:
2020-06-26 20:10:27
阅读次数:
49
一、HTML、CSS、JS 二、jQuery、vue.js、bootstrap 三、web框架学习(flask、django) 四、web前端实战项目案例(京东PC端首页以及移动端首页) web基础、http协议、python自定义web服务器 ajax==json、ajax基础、ajax的开发实例 ...
分类:
其他好文 时间:
2020-06-26 18:26:54
阅读次数:
50
项目结构 /data/playback_project/├── PlayBack└── script /data/playback_project/PlayBack├── app01├── db.sqlite3├── manage.py├── Middle├── PlayBack├── README ...
分类:
其他好文 时间:
2020-06-26 18:18:21
阅读次数:
60
修改了数据库表名之后,更新数据库时跳错: django.db.utils.NotSupportedError: Renaming the 'app_class' table while in a transaction is not supported on SQLite because it wo ...
分类:
数据库 时间:
2020-06-26 18:10:51
阅读次数:
72
from django.db.models import F, Q, Max, Min, Avg, Count from django.http import HttpResponse from django.shortcuts import render, redirect from polls. ...
分类:
其他好文 时间:
2020-06-26 16:11:42
阅读次数:
45
前言 使用python manage.py makemigrations时出现报错: from err django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module. Did you install mysqlcl ...
分类:
数据库 时间:
2020-06-25 19:32:03
阅读次数:
216
前言 在 django 的 User 表里面有个 is_active 字段可以判断用户是否是激活状态。 使用 authenticate 校验登录的时候 is_active 是不生效的。 authenticate 登录 create_user 创建新用户的时候 is_active 默认是1,也就是Tr ...
分类:
编程语言 时间:
2020-06-25 17:54:10
阅读次数:
69
1.导入模块包 from django.db import transaction 2.设置回滚点 with transaction.atomic(): save_id = transaction.savepoint() # 设置回滚点 try: order = Order.objects.crea ...
分类:
数据库 时间:
2020-06-25 17:34:22
阅读次数:
115
django-部署nginx-静态文件配置 nginx 配置静态文件路径 创建新路径-主要存放Django所有静态文件 如: /home/jerome/项目名_static/ 在Django settings.py 中添加新配置 STATIC_ROOT = '/home/jerome/项目名_sta ...
分类:
其他好文 时间:
2020-06-25 15:28:49
阅读次数:
74