上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 61 下一页
摘要: " Bluebird author here. V8 promises implementation is written in JavaScript not C. All JavaScript (including V8's own) is compiled to native code. Add 阅读全文
posted @ 2020-05-15 21:52 hh9515 阅读(145) 评论(0) 推荐(0) 编辑
摘要: (这一部分叫做 初始化阶段 ,从_init到created钩子间, 后面是模板编译的阶段 模板编译阶段会一直到 beforeMount 然后进入挂载阶段 到Mounted 最后是卸载阶段 ) 阅读全文
posted @ 2020-05-10 14:00 hh9515 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-07 23:27 hh9515 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 因为vue在initData的时候 function initData(vm){ let data = vm.$options.data data = vm._data = typeof data ‘function’ ? getData(data, vm) : data || {} /* 因为在这 阅读全文
posted @ 2020-04-13 16:57 hh9515 阅读(629) 评论(0) 推荐(0) 编辑
摘要: The Chrome DevTools Protocol allows for tools to instrument, inspect, debug and profile Chromium, Chrome and other Blink-based browsers. Many existing 阅读全文
posted @ 2020-04-04 20:54 hh9515 阅读(5096) 评论(0) 推荐(0) 编辑
摘要: https://javascript.info/event-loop 1.splitting cpu-hungry tasks 事件循环就是可以做这个的,设计出的这些marco task split的方式来执行一段儿,防止无响应的情况 (js中的MacroTask) 1. Rendering nev 阅读全文
posted @ 2020-03-27 09:48 hh9515 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 待续 阅读全文
posted @ 2020-03-26 01:38 hh9515 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 待续 阅读全文
posted @ 2020-03-24 00:27 hh9515 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 最近开始阅读这本书,这里对每章内容进行一下总结: 待续 阅读全文
posted @ 2020-03-19 10:30 hh9515 阅读(181) 评论(0) 推荐(0) 编辑
摘要: /[^\w.$]/ 注意,方括号代表一个字符(字符长度为1) ^代表 不是 特殊字符代表他们本来的含义 上面这个regexp,代表不是 \w(字母) 不是 . 不是 $的一个字符 (注意这个里的.不是任意字符的意思, 这个里面,如果写. $ / 都代表这些字符本身) 阅读全文
posted @ 2020-03-15 23:29 hh9515 阅读(704) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 61 下一页