先通过pip install pymysql安装 例如,更新某张表: import pymysql def update(id, flag=True): # 打开数据库连接 db = pymysql.connect( host = '127.0.0.1', port = 3306, user = ' ...
分类:
数据库 时间:
2020-07-12 22:39:11
阅读次数:
81
问题描述- 表单通过离焦事件触发校验,校验完成后改变input框中的placeholder显示校验结果。 问题解决- 抱歉,问题并没有完全解决。目前只能改变placeholder的文字,但是文字颜色不可控制。 input框 <input type="text" id="username" name= ...
分类:
Web程序 时间:
2020-07-12 22:35:28
阅读次数:
130
一.知识梳理 若整个排序过程不需要访问外存便能完成,则称此类排序问题为内部排序 逐步扩大记录的有序序列长度的过程 外部排序 插入 交换 选择归并 分配 排序算法效率的评价指标:时间效率 空间效率 稳定性 ( A和B的关键字相等,排序后A、B的先后次序保持不变) ?直接插入排序(基于顺序查找) 从R[ ...
分类:
其他好文 时间:
2020-07-12 19:04:26
阅读次数:
67
* 逻辑运算符: * &&: 与(短路) * ||: 或 (短路) * !:非 * * 其他类型转boolean: * 1. number:0或NaN为假,其他为真 * 2. string:除了空字符串(""),其他都是true * 3. null&undefined:都是false * 4. 对象 ...
分类:
Web程序 时间:
2020-07-11 00:23:35
阅读次数:
87
package main import ( "flag" "fmt" ) //**Demo1**: func main() { t1 := flag.Int("w", 0, "demo test") //int变量 t2 := flag.String("a", "Hello", "demo test ...
分类:
其他好文 时间:
2020-07-10 15:22:54
阅读次数:
74
注册表位置: HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Lxss\ 值 Key 类型 描述 DefaultDistribution REG_SZ 默认发行版 DefaultVersion REG_DWORD 默认WSL版本 项 Key 类型 描述 ...
分类:
其他好文 时间:
2020-07-10 15:07:13
阅读次数:
110
一、modify easy-mock-->/api/gathering/search/{page}/{size} { "flag": true, "code": 20000, "message": "@string", "data": { "total": "@integer(60, 100)", ...
分类:
其他好文 时间:
2020-07-09 22:05:02
阅读次数:
61
1 代码 修改bootsecet.s,代码如下。原本的bootsect.s代码很长,但完成第一个功能,只需如下的21行代码。 1 entry _start 2 _start: 3 mov ah,#0x03 4 xor bh,bh 5 int 0x10 6 mov cx,#11 7 mov bx,#0 ...
分类:
其他好文 时间:
2020-07-08 20:03:29
阅读次数:
54
[root@localhost ~]# cat a.log a ab abc ddd [root@localhost ~]# [root@localhost ~]# cat b.log a ab abc ddd dd f [root@localhost ~]# [root@localhost ~]# ...
分类:
编程语言 时间:
2020-07-07 15:06:04
阅读次数:
98
http协议之详解(点我) http协议之https(点我) http协议之libcurl(点我) 一、libcurl简介 libcurl是一个跨平台的网络协议库,支持http, https, ftp, gopher, telnet, dict, file, 和ldap 协议。libcurl同样支持 ...
分类:
Web程序 时间:
2020-07-07 13:34:00
阅读次数:
84