Less_5 补充基础知识 1. left(a,b)左侧截取a的前b位,正确则返回1,错误则返回o Select left(database(),1)=’s’; 其中database()为security,截取的是第一个字母’s’,正确返回1 2. regexp函数 select user() re ...
分类:
数据库 时间:
2020-02-11 16:02:42
阅读次数:
100
What makes trading between rich countires difficult? Chickens slautered in the United States, claim officials in Brussels, are not fit to grace Europe ...
分类:
其他好文 时间:
2020-02-11 13:16:34
阅读次数:
97
1、UMI默认提供了可视化antd模板,可以直接添加到项目中修改用 比如将个人中心添加到项目中 2、选择个人中心,确定 3、成功 4、打开项目 5、Route文件也自动添加 6、运行报错 7、安装 8、找不到style.less 安装less模块npm install --save-dev less ...
分类:
其他好文 时间:
2020-02-11 10:11:07
阅读次数:
231
less ,sass等预处理语言的编译 --浏览器无法识别,需要编译成css才能被识别 less 1、less 2、less-loader sass 1、sass-loader 2、node-sass 以less为例rules: [ { test:/\.less$/, use:[ //loader的 ...
分类:
Web程序 时间:
2020-02-11 09:49:59
阅读次数:
77
Less-1 (报错注入) 因为第一次做这些题,不太了解,所以$sql下加上echo "$sql<br>";能更明显的看出具体的输入 1.判断是否存在注入点 当输入?id=1时结果如下 当输入?id=1’ and 1=1--+时回显正确 当输入?id=1’发生报错,存在注入点 2.判断字段数 经尝试 ...
分类:
数据库 时间:
2020-02-10 22:39:12
阅读次数:
91
背景 unittest支持各种断言方法。 断言列表 官方文档 方法检查点 assertEqual(a, b) a == b assertNotEqual(a, b) a != b assertTrue(x) bool(x) is True assertFalse(x) bool(x) is Fals ...
分类:
其他好文 时间:
2020-02-10 13:26:17
阅读次数:
309
Convert a non-negative integer to its english words representation. Given input is guaranteed to be less than 231 - 1. Example 1: Input: 123 Output: " ...
分类:
其他好文 时间:
2020-02-10 10:16:33
阅读次数:
75
Queen’s UniversityDepartment of Mathematics and StatisticsMTHE/STAT 353Homework 3 Due February 6, 2020? For each question, your solution should start ...
分类:
其他好文 时间:
2020-02-08 19:23:46
阅读次数:
107
1.先判断注入类型 (1)首先看到要求,要求传一个ID参数,并且要求是数字型的;?id=1 (2)再输入:?id=1 and 1=1 (3)输入:?id=1 and 1=2 因为(2)(3)没有变化,所以不是数字型 (4)输入:?id=1' 有错误,说明是字符型的 (5)加上--+,我们再输入:?i ...
分类:
其他好文 时间:
2020-02-07 19:00:57
阅读次数:
76