1、防抖节流 触发高频事件后n秒内函数只会执行一次 2、数据集合 Set > 不允许重复,只有健值没有健名和数组类似,可以遍历循环有add, delete,has 方法 Map > 字典 键值对的集合,类似集合 4、将数组扁平化并去除其中重复数据,最终得到一个升序且不重复的数组 Array.from ...
分类:
其他好文 时间:
2020-02-28 15:41:59
阅读次数:
57
import urllib.requestimport urllib.parseurl = 【'http://fanyi.youdao.com/translate?smartresult=dict&smartresult=rule'】data = {}data['i'] ='fish'data['f ...
分类:
其他好文 时间:
2020-02-28 14:03:44
阅读次数:
74
Java常见的线程安全相关的面试题 步骤 1 : HashMap和Hashtable的区别 HashMap和Hashtable都实现了Map接口,都是键值对保存数据的方式 区别1: HashMap可以存放 null Hashtable不能存放null 区别2: HashMap不是线程安全的类 Has ...
分类:
编程语言 时间:
2020-02-28 11:55:20
阅读次数:
56
在小程序开发中,会频繁遇到 Page "pages/index/main" has not been registered yet. 这种报错,意思就说指定的页面没有注册,找不到。遇到这种问题很可能不是代码问题,解决起来也真的是浪费时间,下面我介绍两种方式。 方法一:从源头处解决 产生这种现象的原因 ...
分类:
微信 时间:
2020-02-28 10:27:55
阅读次数:
3268
application.yml 添加后两行配置,增加连接池数量data: mongodb: host: *** database: *** port: 27017 username: *** password: *** authenticationDatabase: *** connections- ...
分类:
数据库 时间:
2020-02-28 01:40:29
阅读次数:
168
System has not been booted with systemd as init system (PID 1). Can't operate
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is t... ...
分类:
其他好文 时间:
2020-02-28 01:30:10
阅读次数:
69
JCB Electronic Service Tool Diagnostic Interface is used for fast and effective fault finding, check maintenance standards, see if the machine has bee ...
分类:
其他好文 时间:
2020-02-27 15:56:24
阅读次数:
82
Suppose a bank has N windows open for service. There is a yellow line in front of the windows which devides the waiting area into two parts. The rules ...
分类:
其他好文 时间:
2020-02-26 18:40:18
阅读次数:
62
I'm a newbie when it comes to creating new events to components... and I noticed that TDBGrid has a OnCellClick, but sadly it doesnt have an OnCellDbl ...
分类:
数据库 时间:
2020-02-26 01:52:35
阅读次数:
104
[TOC] 权限组件 重点 1 权限规则 2 如何自定义权限 3 我们一般在视图类中局部配置 drf 提供的权限类,但是也会自定义权限类完成局部配置 自定义权限类 1 自定义权限类,继承 BasePermission 类 2 必须重写 def has_permission(self, request ...
分类:
其他好文 时间:
2020-02-25 20:17:05
阅读次数:
47