BrowserMob Proxy,简称 BMP,它是一个 HTTP 代理服务,我们可以利用它截获 HTTP 请求和响应内容。 第一步:先安装 BrowserMob Proxy 的包。 pip install browsermob-proxy 第二步:下载 browsermob-proxy 的二进制文 ...
分类:
编程语言 时间:
2020-07-15 23:28:47
阅读次数:
93
Description A wqb-number, or B-number for short, is a non-negative integer whose decimal form contains the sub- string "13" and can be divided by 13. ...
分类:
其他好文 时间:
2020-07-15 23:20:22
阅读次数:
96
1 . 校验密码强度 密码的强度必须是包含大小写字母和数字的组合,不能使用特殊字符,长度在8-10之间。 ^(?=.*\\d)(?=.*[a-z])(?=.*[A-Z]).{8,10}$ 2. 校验中文 字符串仅能是中文。 ^[\\u4e00-\\u9fa5]{0,}$ 3. 由数字、26个英文字母 ...
分类:
其他好文 时间:
2020-07-15 22:55:09
阅读次数:
69
class QQEmail { public bool IsSetEmail(string FromAddress, string ToAddress, string Message,string Pwd) { MailAddress Address = new MailAddress(FromAd ...
查询Mysql当前正在运行的SQL语句:show full processlist或者show processlist 结果都是从information_schema.processlist表取的结果,所以也可以主直接查询该表select info from information_schema.p ...
分类:
数据库 时间:
2020-07-15 15:27:02
阅读次数:
69
html表单表单用于搜集不同类型的用户输入表单由不同类型的标签组成相关标签及属性用法如下:<form> 标签定义整体的表单区域 action属性定义表单数据提交地址 method属性定义表单提交的方式一般有get方式和post方式 <label> 标签为表单元素定义文字标注<input>标签定义通用 ...
分类:
Web程序 时间:
2020-07-15 15:12:37
阅读次数:
85
export default { // 两个对象合并 extend: function(target, source, deep) { target = target || {}; var sType = typeof source, i = 1, options; if (sType 'undef ...
分类:
其他好文 时间:
2020-07-15 15:11:36
阅读次数:
78
在类定义方法,方法的部分代码如下: //获取类所有成员列表 Field[] fields = this.getClass().getDeclaredFields(); for (int i = 0; i < fields.length; i++) { //获取变量名 String fieldname ...
分类:
其他好文 时间:
2020-07-15 13:03:02
阅读次数:
64
给定一个n个点m条边的无向图,图中可能存在重边和自环。 请你判断这个图是否是二分图。 输入格式 第一行包含两个整数n和m。 接下来m行,每行包含两个整数u和v,表示点u和点v之间存在一条边。 输出格式 如果给定图是二分图,则输出“Yes”,否则输出“No”。 数据范围 1≤n,m≤1051≤n,m≤ ...
分类:
其他好文 时间:
2020-07-15 01:04:50
阅读次数:
63
el-form element表单结构 :model="loginForm" 绑定表单对象 :rules="loginFormRules" 绑定表单验证规则 el-form-item prop="username" prop 表单组件验证规则 <el-input v-model="loginForm ...
分类:
其他好文 时间:
2020-07-14 21:54:48
阅读次数:
158