Sentry 错误监控(Django 错误监控) Sentry 官网 https://sentry.io 邮件提醒 错误列表 Python 安装和使用 Install our Python SDK using pip: $ pip install --upgrade sentry-s continue reading 软件测试 zhuoyuebiji 2019/6/13 686
Python3 + Django + xamdin + DjangoUediter,UEditorField 在 xadmin 下加载不出来的解决办法 使用环境 python==3.6.8 django==1.11.18 xadmin # pip install git+git://github.com/sshwsfc/xadmin.git DjangoUediter 问题现象 1. UEditorFiel continue reading django zhuoyuebiji 2019/6/13 908
Django + ckeditor + 七牛云,图片上传到七牛云 本人使用的是 Django 的自带的管理后台,安装 ckeditor 富文本编辑器后,上传图片的时候直接传到七牛云。 参考资料 1. Django storage for 七牛云存储 2. Django 使用 ckeditor 上传到七牛云 安装 continue reading python zhuoyuebiji 2019/7/9 2212
Django 静态文件使用七牛云存储并使用(nginx 转发静态文件) 部署目的 1. 本地的 python manage.py collectstatic 收集到的静态文件,全部上传到七牛云( 收集静态文件时会把静态文件传到七牛云) 2. 当需要使用静态文件时,使用七牛云上的静态文件,访问速度快,提高页面打开速度 参考文档 1. Dj continue reading django zhuoyuebiji 2019/7/12 1586
Centos7 + virtualenv + django + uwsgi + nginx 部署 Django 站点 安装环境 centos: 7.x python: 3.6.x django:1.11 virtualenv 和 virtualenvwrapper 安装 centos7 之 python3, git, nginx, continue reading django zhuoyuebiji 2019/7/24 1312
Python 和 django 学习资料收集 Django awesome(Django 优秀资源大全) https://github.com/haiiiiiyun/awesome-django-cn(源地址) https://github.com/yinzhuoqun/awesome-django-cn(备用地址) continue reading python zhuoyuebiji 2019/7/25 2182
Django 使用邮箱登录(扩展用户表、继承 AbstractUser) # 前提 继承 django 自带的用户类(AbstractUser) # 环境 1. python: 3.6.x 2. django==1.11.22 # apps/users/models.py fro continue reading django zhuoyuebiji 2019/7/25 859
Django 配置 sitemap.xml # settings.py 添加 apps: 'django.contrib.sites', 'django.contrib.sitemaps', INSTALLED_APPS = [ 'django.contrib continue reading django zhuoyuebiji 2019/7/26 544
Django 修改 app 在 admin 后台显示的名称(verbose_name) # 环境 1. python: 3.6.8 2. django==1.11.22 # app 目录下新建一个 apps.py,添加内容:(我的目录结构多了一层 apps) from django.apps import AppConfig continue reading django zhuoyuebiji 2019/7/26 1750
Django 获取富文本编辑器中的图片地址(缩略图、封面) 开发环境 1. python: 3.6.8 2. django==1.11.22 models.py from django.db import models from django.db.models.signals import post continue reading django zhuoyuebiji 2019/7/26 829