摘要: HTTP协议 MVC和MTV框架模式 django下载安装 django的url路由分发 HTTPRequest对象就是咱们的视图函数的参数request HTTPResponse对象 FBV和CBV 视图(视图函数和视图类) 类视图 CBV views.py urls.py路由写法 视图加装饰器 阅读全文
posted @ 2020-03-29 10:47 import* 阅读(168) 评论(0) 推荐(0) 编辑
摘要: django 常用命令1. 创建一个项目:django admin.py startproject <项目名称 django admin.py startproject my_project2. 创建一个应用:python manage.py startapp <应用名称 python manage 阅读全文
posted @ 2020-03-29 10:40 import* 阅读(74) 评论(0) 推荐(0) 编辑
摘要: django debug toolbar安装过程中的error 1、 djdt’ is not a registered namespace 2、name 'include' is not defined 3、name 'settings' is not defined 阅读全文
posted @ 2020-03-28 20:57 import* 阅读(316) 评论(0) 推荐(0) 编辑
摘要: Pipenv是官方推荐的的python包管理工具,可以实现项目之间依赖的隔离。本文将介绍pipenv的基本使用。实验环境为win10+Python3.7,其他平台一样适用。 1. 安装pipenv 使用pipenv之前,需要先安装pipenv及其依赖项。可以使用pip安装,关于pip,可以看我之前的 阅读全文
posted @ 2020-03-28 16:46 import* 阅读(334) 评论(0) 推荐(0) 编辑
摘要: Docker 命令大全 容器生命周期管理 run start/stop/restart kill rm pause/unpause create exec 容器操作 ps inspect top attach events logs wait export port 容器rootfs命令 commi 阅读全文
posted @ 2020-03-27 22:18 import* 阅读(191) 评论(0) 推荐(0) 编辑
摘要: MySQL性能优化 使用索引 索引的设计原则 创建索引的列并不一定是select操作中要查询的列,最适合做索引的列是出现在where子句中经常用作筛选条件或连表子句中作为表连接条件的列。 具有唯一性的列,索引效果好;重复值较多的列,索引效果差。 如果为字符串类型创建索引,最好指定一个前缀长度,创建短 阅读全文
posted @ 2020-03-26 21:20 import* 阅读(304) 评论(0) 推荐(0) 编辑
摘要: Docker容器详解 Docker是基于Go语言开发的开源应用容器引擎,遵从Apache Licence 2.0协议,可以让开发者打包应用以及应用的依赖包到一个可移植的容器中,然后发布到各种发行版本的Linux系统上。 Docker简介 软件开发中最为麻烦的事情可能就是配置环境了。由于用户使用的操作 阅读全文
posted @ 2020-03-26 21:15 import* 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 打开 /etc/docker/daemon.json 添加 { "registry mirrors":[ "http://hub mirror.c.163.com" ] } 记得restart 阅读全文
posted @ 2020-03-26 21:12 import* 阅读(629) 评论(0) 推荐(0) 编辑
摘要: jQuery 教程 jQuery 教程 jQuery 简介 jQuery 安装 jQuery 语法 jQuery 选择器 jQuery 事件 jQuery 效果 jQuery 隐藏/显示 jQuery 淡入淡出 jQuery 滑动 jQuery 动画 jQuery stop() jQuery Cal 阅读全文
posted @ 2020-03-20 21:47 import* 阅读(200) 评论(0) 推荐(0) 编辑
摘要: JS 教程 JS 教程 JS 简介 JS 使用 JS 输出 JS 语句 JS 语法 JS 注释 JS 变量 JS 运算符 JS 算数 JS 赋值 JS 数据类型 JS 函数 JS 对象 JS 事件 JS 字符串 JS 字符串方法 JS 数字 JS 数字方法 JS 数组 JS 数组方法 JS 数组排序 阅读全文
posted @ 2020-03-20 09:31 import* 阅读(266) 评论(0) 推荐(0) 编辑