Live2D
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: 不同数据集合怎么用统一的方式读取 可以用for...of循环了 阅读全文
posted @ 2019-04-02 11:19 Candice&Gladys 阅读(87) 评论(0) 推荐(0) 编辑
摘要: Generator: 是比promise更高级的解决方案 next yield function 后加* 状态机 generator语法糖 长轮询 接口常查询 Promise 普通的ajax: 阅读全文
posted @ 2019-04-02 11:04 Candice&Gladys 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 目的: 修改类的一种方法,修饰器是一个函数 编译: 安装 babel-plugin-transform-decortators-legacy .babelrd plugins: ["transform-decortators-legacy"] @readonly 只能在类的前面或者内部定义 是修饰器 阅读全文
posted @ 2019-04-02 10:36 Candice&Gladys 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 1. 箭头函数的特点 *箭头函数this的指向是定义时所在的对象,而不是使用时所在的对象; * 箭头函数不能做构造函数 * 不能使用argument对象 *不能使用yield命令 2.let const 1. 具有块级函数作用域, 2.大多数情况不会发生变量提升。不能通过window.变量名进行访问 阅读全文
posted @ 2019-04-02 10:16 Candice&Gladys 阅读(59) 评论(0) 推荐(0) 编辑
摘要: Array.prototype.includes let arr = ['react', 'angular', 'vue'] // Correct if (arr.includes('react')) { console.log('Can use React') } Exponentiation O 阅读全文
posted @ 2019-04-01 17:59 Candice&Gladys 阅读(102) 评论(0) 推荐(0) 编辑
摘要: Array.from对象转数组 let map1 = new Map();map1.set('k1',1);map1.set('k2',2);map1.set('k3',3);let array = Array.from(map1);array.forEach((item, index)=>{ co 阅读全文
posted @ 2019-04-01 17:42 Candice&Gladys 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 对象的扩展 let obj = {a: 1, b: 2, c: 3, d: 4}; Object.keys(obj).forEach((key,index)=>{ console.log(key); }); // a b c d let obj = {a: 1, b: 2, c: 3, d: 4}; 阅读全文
posted @ 2019-04-01 16:28 Candice&Gladys 阅读(113) 评论(0) 推荐(0) 编辑
摘要: let [va,vb,vc] = [12,'hello',[3,4]]; // va=12, vb='hello',vc=[3,4] 默认参数 let [x,y='b',c=true] = ['a',undefined]; // x='a', y='b', c=true let {x1, y1 = 阅读全文
posted @ 2019-04-01 16:27 Candice&Gladys 阅读(129) 评论(0) 推荐(0) 编辑
摘要: ECMAScript(js语言规范) ###ES5 1. 严格模式 运行模式: 正常(混杂)模式与严格模式 应用上严格模式: ‘strict mode’ 2、JSON对象 * JSON.stringify(obj/arr) js对象(数组)转换为json对象(数组) * JSON.parse(jso 阅读全文
posted @ 2019-04-01 16:15 Candice&Gladys 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 1. 构造器 实例化方式一样 阅读全文
posted @ 2019-04-01 13:15 Candice&Gladys 阅读(71) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页