多对多关系 ManyToManyField 以下是一些小说和小说标签,以及小说和标签之间的多对多关系 宫锁心玉 => 穿越、古装、言情 美女总裁 => 都市、言情 斗破苍穹 => 穿越、玄幻、言情 都市重生 => 都市、玄幻 创建模型类Fictions、Labels,小说类和小说标签类 模型类 fr ...
分类:
其他好文 时间:
2020-10-05 21:50:52
阅读次数:
21
添加验证码生成类Captcha public class Captcha { /// <summary> /// 生成随机数 /// </summary> /// <param name="codeLen">数据的长度</param> /// <returns></returns> public s ...
分类:
Web程序 时间:
2020-09-24 21:17:49
阅读次数:
51
前言 Django的默认缓存是存在内存当中,重启服务缓存就失效了。 文章选择用redis做缓存,需要预先安装redis数据库并启动服务 安装pip install django-redis 附带django-redis中文文档:django-redis中文文档 代码实现 在项目中的setting.p ...
分类:
其他好文 时间:
2020-09-24 20:47:27
阅读次数:
47
使用django_damin后台时,数据库没有自动生成django_admin_log,需要单独迁移文件admin应用pythonmanage.pymakemigrationsadminpythonmanage.pymigrateadmin报错如下:err.raise_mysql_exception(self._data)File"/usr/local/python36/lib/python3.6
分类:
其他好文 时间:
2020-09-21 12:14:22
阅读次数:
56
modelsadmin属性: 点这里 models.admin方法: 点这里 ...
分类:
其他好文 时间:
2020-09-18 03:01:45
阅读次数:
35
Converting any HTML template into a Django template The normal way Any HTML, CSS, JS or BootStrap template can be converted into a Django compatible t ...
分类:
Web程序 时间:
2020-09-18 02:57:40
阅读次数:
47
1.找到file下setting的django配置: 项目根目录 项目的setting文件 项目的manage文件 2. 点击我这里vedio旁的下拉框,有一个add或者edit配置的选项,选择。 3.配置settings文件的位置,并选择python环境 ...
分类:
其他好文 时间:
2020-09-18 02:34:06
阅读次数:
31
1.redis配置 在settings.py中加入以下代码块,可支持多个redis的配置 1 CACHES = { 2 "default": { 3 "BACKEND": "django_redis.cache.RedisCache", 4 "LOCATION": "redis://127.0.0. ...
分类:
其他好文 时间:
2020-09-18 01:31:16
阅读次数:
29
django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet. 解决方法: 用django的TestCase from django.test import TestCase ...
分类:
移动开发 时间:
2020-09-18 01:19:57
阅读次数:
40
Django应用容器化实践 django项目介绍 项目地址: https://gitee.com/agagin/python-demo.git $ git clone https://gitee.com/agagin/python-demo.git $ cd python-demo/ $ ll to ...
分类:
其他好文 时间:
2020-09-18 00:18:45
阅读次数:
31