在修改了models.py后,有些用户会喜欢用python manage.py makemigrations生成对应的py代码。但有时执行python manage.py makemigrations命令(也可能人比较皮,把migrations文件夹给删了),会提示"Nochangesdetecte ...
分类:
编程语言 时间:
2019-12-26 09:45:18
阅读次数:
91
注册泛型接口的类: builder.RegisterAssemblyTypes(typeof(IEventHandler<>).Assembly) .Where(t => t.IsClass && t.GetInterfaces().Any(i=>i.IsGenericType && i.GetGe ...
分类:
其他好文 时间:
2019-12-26 09:29:06
阅读次数:
110
Mencached基本部署Mamcached概述memcached是一套分布式的高速缓存系统,运行在内存中。memcached缺乏认证以及安全管制,这代表应该将memcached服务器放置在防火墙后。实验准备实验步骤memcached服务端1、安装环境包[root@localhostlibevent-2.1.8-stable]#yuminstallgccgcc-c++make-y2、安装Libev
分类:
系统相关 时间:
2019-12-25 22:27:40
阅读次数:
111
We mean the world to our children and when we let them down, it’s a tragedy. A simple promise we make in a rush and break afterward may mean nothing t ...
分类:
其他好文 时间:
2019-12-24 10:11:41
阅读次数:
82
错误: $ make menuconfig *** Unable to find the ncurses libraries or the *** required header files. *** 'make menuconfig' requires the ncurses libraries. ...
分类:
其他好文 时间:
2019-12-23 15:02:58
阅读次数:
73
Custom Routes Custom Routes Template routes allow you to map individual URLs to specific template files within a Ghost theme. For example: make /custo ...
分类:
其他好文 时间:
2019-12-23 00:44:43
阅读次数:
110
类的继承:四大支柱(抽象、多态、继承、封装)之一,优点:代码重用 class Car(): def __init__(self, make, model, year): #初始化描述汽车的属性 self.make = make self.model = model self.year = year ...
分类:
其他好文 时间:
2019-12-23 00:24:15
阅读次数:
73
1.简易迭代器样板 1 function makeIterator(arr) { 2 let nextIndex = 0; 3 return { 4 next: () => { 5 if (nextIndex < arr.length) { 6 return { value: arr[nextInd ...
分类:
Web程序 时间:
2019-12-23 00:16:51
阅读次数:
125
favicon.ico浏览器图标配置 favicon.ico 文件是浏览器收藏网址时显示的图标,当客户端使用浏览器问页面时,浏览器会自己主动发起请求获取页面的favicon.ico文件,但是当浏览器请求的favicon.ico文件不存在时,服务器会记录404日志,而且浏览器也会显示404报错。 lo ...
分类:
其他好文 时间:
2019-12-22 22:56:36
阅读次数:
484
map 是 key value 类型的数据结构 初始化 map 声明之后必须要初始化才能使用 初始化方法: make 通过 make 可以分配内存空间,如果省略 size 的话,分配的空间会较少,当内存超出范围时会内存再分配 示例: 直接初始化 声明时直接写入值 多层 map 在使用多层 map 时 ...
分类:
其他好文 时间:
2019-12-22 16:43:25
阅读次数:
121