一般是因为core.js在使用yarn拉取的时候没拉到,可以用npm单独来拉取 npm install --save core-js
https://svnbucket.com/posts/download-install-svn/
要点: 递归 判断类型 检查环 不拷贝原型上的属性 const deepClone = (a, cache) => { if(!cache){ cache = new Map() // 缓存不能全局,最好临时创建并递归传递 } if(a instanceof Object) { // 不考虑跨 iframe if(cache.get(a)) …
要点: 知道要在 Promise 上写而不是在原型上写 知道 all 的参数(Promise 数组)和返回值(新 Promise 对象) 知道用数组来记录结果 知道只要有一个 reject 就整体 reject Promise.prototype.myAll Promise.myAll = function(list){ const results…
//什么是Ajax? async JavaScript and XML(JSON) let xhr = new XMLHttpRequest(); xhr.open('GET','/requestHttpDemo'); // xhr.onload = () => { // console.log(…
// 概念:回城被打断 let debounce = (fn, time, asThis) => { let timer = null; return (...args) => { if (timer) { clearTimeout(timer) } timer = setTimeout(() => { fn.call(asThi…
// 概念:触发CD let debounce = (fn, time, asThis) => { let cooldown = false; let timer = null; return (...args) => { if (cooldown) { return; } fn.call(asThis, ...args) cooldo…
const eventHub = { map: {}, on: (key, fn) => { eventHub.map[key] = eventHub.map[key] || []; eventHub.map[key].push(fn); }, off: (key, fn) => { let mark = eventHub.map[ke…
https://blog.csdn.net/qq_40323256/article/details/102929887
今天本地package打包的时候发现测试不通过报错: 后面追加了一个依赖包解决了, 这里记录一下 配置复制:↓ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</arti…