本节我们学习 Less 中的嵌套,嵌套应该很容易理解,html 语言中就支持标签的嵌套。我们在使用 css 时,如果想要为多层嵌套的元素设置样式,要么给元素加上一个类选择器或ID选择器,要么使用后代选择器。例如: .xkd{ font-size: 14px; } .xkd p{ line-heigh ...
分类:
其他好文 时间:
2020-09-17 21:51:58
阅读次数:
32
报错信息: trying to create too many buckets. must be less than or equal to: [100000] but was [100001]. this limit can be set by changing the [search.max_b ...
分类:
其他好文 时间:
2020-09-17 19:52:17
阅读次数:
105
写在前面 高阶组件简称为 HOC,即 High Order Component ,是 React 中,高阶组件是一个函数,其接收的参数为一个组件,并返回一个组件。 HOC 是 react 中用于复用组件逻辑的一种高级技巧。 1. 为什么使用 HOC 为什么使用 HOC,简单来说,就是为了减少代码的重 ...
分类:
其他好文 时间:
2020-09-17 19:21:11
阅读次数:
24
错误:找不到实体类 解决办法:放错了包,在相应包的平行位置创建了相同的包所以找不到实体类 DEBUG [main] - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter. DEBUG ...
分类:
其他好文 时间:
2020-09-17 16:04:31
阅读次数:
55
48. sp_password.py脚本 在payload语句后面添加sp_password 这样是为了迷惑数据库日志,适用于所有数据库 测试地址:python sqlmap.py -u http://106.54.35.126/Less-1/?id=1 --dbs --tamper="sp_pas ...
分类:
数据库 时间:
2020-09-17 15:44:17
阅读次数:
45
46. space2plus.py脚本 通过使用"+"来替换空格 适用于所有数据库 测试地址:python sqlmap.py -u http://106.54.35.126/Less-1/?id=1 --dbs --tamper="space2plus.py" --proxy="http://12 ...
分类:
数据库 时间:
2020-09-17 14:05:47
阅读次数:
39
参考地址:https://blog.csdn.net/lll_liuhui/article/details/87923041 <template> <view class="scrool-page"> <view class="header-cont">头部</view> <view class=" ...
分类:
移动开发 时间:
2020-09-17 13:41:19
阅读次数:
109
""" Django settings for swiper project. Generated by 'django-admin startproject' using Django 1.11.15. For more information on this file, see https:// ...
分类:
其他好文 时间:
2020-09-16 12:28:25
阅读次数:
36
function Events(params) { this.events = [] } //订阅 Events.prototype.on = function (eventName,eventFn) { if(!this.events[eventName]) { //把事件存起来 ,有就push没 ...
分类:
其他好文 时间:
2020-09-16 12:26:03
阅读次数:
35
const double eps = 1e-8; #define Equ(a,b) ( ( fabs( (a)-(b))) < (eps)) #define More(a,b) ( (a) - (b)) > (eps)) #define Less(a,b) ( (a) - (b)) < (-eps) ...
分类:
其他好文 时间:
2020-09-15 20:59:48
阅读次数:
34