Live2D
上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: koa是Express的下一代基于node的web框架 目前有1.x和2.0两个版本 1。 Express Express是第一代最流行的web框架 它对node.js的http进行了封装 Express的api很简单 但是是基于ES5的语法 想要异步实现代码 只有一个方法: 回调 如果异步嵌套层过 阅读全文
posted @ 2019-04-11 16:12 Candice&Gladys 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 为什么用SPA 1. 减少服务器压力 如果不用spa 那么每次切换页面的时候,就会向服务器发送一个请求 服务器返回一个html文件 如果使用了SPA 在切换时,不需要请求服务器,只要通过本地的js来切换即可 并且服务器端不需要配置路由 完全做到前后端分离 2. 增强用户体验 增加app流畅性 SPA 阅读全文
posted @ 2019-04-11 14:21 Candice&Gladys 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 1. 新增Number.EPSILON(误差检查函数) 阅读全文
posted @ 2019-04-10 17:37 Candice&Gladys 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 十进制转换成二进制的时候出现了无限循环 导致要做舍去处理 阅读全文
posted @ 2019-04-10 17:27 Candice&Gladys 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 1. forEach()返回的是undefined 不可以链式调用 return没有用 2. map()返回一个新数组 原数组不会改 3. 没办法终止或者跳过forEach()和map循环 除非抛出异常, 所以想执行一个数组是否满足什么条件,返回布尔值 可以用for循环实现 或者用array.eve 阅读全文
posted @ 2019-04-10 17:09 Candice&Gladys 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 1. id,class类,标签,相邻, 子,后代 , 通配, 属性选择器(a[rel="external"]) , 伪类选择器(a:hover,li:nth-child) 2. 可继承的属性: font-size,font-family,color, text-indent 3. 不可继承: mar 阅读全文
posted @ 2019-04-09 16:22 Candice&Gladys 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 1. cookie 第一:每个特定的域名下最多生成20个cookie (数量上) <IE6: 20 | >ie7:50 | firefox: 50 | IE Opera :清理近期最少用的cookie firefox会随机清理cookie 第二: cookie 最大不超过4095字节 每一条cook 阅读全文
posted @ 2019-04-09 14:54 Candice&Gladys 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
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) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页