摘要:
// 原生ajax (最简单版本GET请求,未处理IE兼容) const xhr = XMLHttpRequest(); xhr.open("GET", "/api", true); xhr.onreadystatechange = function(){ if (xhr.readyState 4) 阅读全文
摘要:
// 是不是对象 function isObject(obj) { return typeof obj "object" || obj !== null; } // 深度比较 function isEqual(obj1, obj2){ if (!isObject(obj1) || !isObject 阅读全文
摘要:
// 深拷贝 function deepClone(obj={}){ if (typeof obj !== "object" || obj == null) { // obj是null,或者不是数组对象,直接返回 return obj; } // 初始化返回结果 let result; if (ob 阅读全文