详细错误: 1 gyp ERR! find Python 2 gyp ERR! find Python Python is not set from command line or npm configuration 3 gyp ERR! find Python Python is not set ...
分类:
编程语言 时间:
2020-07-16 12:28:08
阅读次数:
312
日常开发中我们接触到的和事件最接近的应该是消息,这两者也比较容易混淆,难以说清楚它们的界限:什么是事件,而什么是消息? ...
分类:
其他好文 时间:
2020-07-16 11:46:37
阅读次数:
115
(四)事件对象 event.target 显示点击元素的标签名 event.type 事件类型 $("a").click(function(event) { alert(event.type); // "click" }); event.timeStamp 显示两次函数执行之间的时间 diff = ...
分类:
Web程序 时间:
2020-07-16 00:05:07
阅读次数:
93
c++编译报错: .\../../third_party/blink/renderer/modules/clipboard/clipboard.cc(34,19): error: incomplete type 'blink::Event' named in nested name specifie ...
分类:
其他好文 时间:
2020-07-15 23:24:54
阅读次数:
71
在mysql.ini里面把skip-grant-tables这个注释掉,添加这行event_scheduler=ON,保存重启服务器就可以 了 skip-grant-tables作用是跳过验证,有了这个其实你可以把之前的忘记的密码修改掉。 定时器无法开启时需要吧这行注释掉。 ...
分类:
其他好文 时间:
2020-07-15 22:58:39
阅读次数:
50
label 语句在之前写的代码中很少用到。最近重新看了基础,发现之前没有真的清楚其作用,开始只知道 label 是代码“跳转”到这个标签,什么时候应用才比较好呢?带着疑问,重新梳理了一下。 在执行单层循环的时候,label 其实作用不明显,比如 loopTop: for(let i = 0; i < ...
分类:
编程语言 时间:
2020-07-15 16:06:16
阅读次数:
110
1:所有的发布订阅就是一个对象。 class Obersve { event={} //等价于下面的constructor // constructor() { // this.event = {} // } subscribe(type, fn) { //订阅 if (Object.keys(th ...
分类:
其他好文 时间:
2020-07-15 15:47:31
阅读次数:
68
TheQLoggingCategorycla***epresentsacategory,or‘area’inthelogginginfrastructure.日志系统的一个种类TheQCanBusDeviceclassistheinterfaceclassforCANbusenumQCanBusDevice::ConfigurationKeyThisenumdescribesthepossible
分类:
其他好文 时间:
2020-07-15 13:10:22
阅读次数:
96
proxmox vlan配置(隔离主机及虚拟机vlan)
分类:
其他好文 时间:
2020-07-15 12:50:57
阅读次数:
261
判断点击的元素的外层元素是否有我们想要的目标元素,如果有就执行自己相应的逻辑 function clickEvent(event) { const target = 'className'; if (!(event.target.classList.contains(target) || eleme ...
分类:
其他好文 时间:
2020-07-14 16:39:46
阅读次数:
65