摘要: // 原生ajax (最简单版本GET请求,未处理IE兼容) const xhr = XMLHttpRequest(); xhr.open("GET", "/api", true); xhr.onreadystatechange = function(){ if (xhr.readyState 4) 阅读全文
posted @ 2020-06-21 16:04 两只小老虎 阅读(117) 评论(0) 推荐(0) 编辑
摘要: // 是不是对象 function isObject(obj) { return typeof obj "object" || obj !== null; } // 深度比较 function isEqual(obj1, obj2){ if (!isObject(obj1) || !isObject 阅读全文
posted @ 2020-06-21 14:04 两只小老虎 阅读(391) 评论(0) 推荐(0) 编辑
摘要: // 深拷贝 function deepClone(obj={}){ if (typeof obj !== "object" || obj == null) { // obj是null,或者不是数组对象,直接返回 return obj; } // 初始化返回结果 let result; if (ob 阅读全文
posted @ 2020-06-21 00:39 两只小老虎 阅读(186) 评论(0) 推荐(0) 编辑