TP框架使用命令行 <?php namespace app\command; use think\Db; use app\shopee\Item; use think\console\Input; use think\console\Output; use think\console\Command ...
分类:
其他好文 时间:
2021-06-17 17:23:24
阅读次数:
0
配置中心 例如: 携程的apollo , furion 配置中心, 是用来配置一些开关值,灰度值 等容易变化的配置项。一般场景是需要手动更新配置值, 也可以通过程序更新。 一般来讲配置中心的key 是需要在配置中心提前注册好的。 缓存 例如: redis, memcached 缓存一些热点数据, 防 ...
分类:
其他好文 时间:
2021-06-17 17:12:38
阅读次数:
0
查询排序order by,正序asc 倒序desc。 分组查询group by,分组查询后筛选使用having; 默认值约束 default; 非空约束not null;注:非空字段必须赋值。唯一约束unique; 主键(非空+唯一)primary key; 自增长zerofill; 外键CONST ...
分类:
数据库 时间:
2021-06-17 16:52:03
阅读次数:
0
python中max 与lambda函数联用 dic={'k1':10,'k2':100,'k3':30} print(dic[max(dic,key=lambda k:dic[k])]) #输出结果为100 当看到*max(dic,key=lambda k:dic[k])*时懵逼了,这怎么比大小, ...
分类:
编程语言 时间:
2021-06-17 16:43:38
阅读次数:
0
Markdown learning h2 h3 h4 font hello,world! hello,world! hello,world! hello,world! hello,world! hello,world! quote choose Java, split lines picture h ...
分类:
其他好文 时间:
2021-06-17 16:39:11
阅读次数:
0
sql_item = "select rate_swap_id_sequence.nextval from (select 1 from DCS_FILE_RECORD where rownum <=%d)" % (num_data) ...
分类:
数据库 时间:
2021-06-16 18:27:10
阅读次数:
0
https://www.66law.cn/tiaoli/82.aspx#%E7%AC%AC%E5%85%AD%E7%AB%A0%C2%A0%E9%99%84%C2%A0%E5%88%99 https://baike.baidu.com/item/%E4%B8%AD%E5%8D%8E%E4%BA%BA ...
分类:
其他好文 时间:
2021-06-16 18:26:11
阅读次数:
0
js 基础 for in 和 for of的区别详解 const obj = { a: 1, b: 2, c: 3 } for (let i in obj) { console.log(i) // a // b // c } for (let i of obj) { console.log(i) / ...
分类:
其他好文 时间:
2021-06-16 18:08:46
阅读次数:
0
简单网络管理协议_百度百科 https://baike.baidu.com/item/%E7%AE%80%E5%8D%95%E7%BD%91%E7%BB%9C%E7%AE%A1%E7%90%86%E5%8D%8F%E8%AE%AE/2986113 简单网络管理协议(SNMP) 是专门设计用于在 IP ...
分类:
Web程序 时间:
2021-06-16 17:59:06
阅读次数:
0
每学期都要教学评教,是学校给予学生的权利。 个人认为每位老师都比较负责,每个选项都可以评为优秀。 但是手动评教差不多要点100200次,十分费手。 于是看了下网站源代码,就写了段代码,轻松解决 document.querySelectorAll("[djdm='01']").forEach((ite ...
分类:
其他好文 时间:
2021-06-16 17:53:14
阅读次数:
0