Live2D
摘要: 阅读全文
posted @ 2019-04-02 13:18 Candice&Gladys 阅读(102) 评论(0) 推荐(0) 编辑
摘要: webpack有四个核心概念: 入口(entry) 输出(output) loader 插件(plugins) 输出: 在哪里输出创建的bundles,以及如何命名这些文件, 默认./dist filename : 输出文件的文件名 path: 目标输出目录 path 的绝对路径。 output: 阅读全文
posted @ 2019-04-02 12:44 Candice&Gladys 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 继承 静态方法 静态属性 getter setter super可以给父类传递参数 super一定放第一行 get :是属性 阅读全文
posted @ 2019-04-02 11:49 Candice&Gladys 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 不同数据集合怎么用统一的方式读取 可以用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) 编辑