摘要: 操作符文档 API 所有静态操作符 Observable import { Observable } from "rxjs"; const l = console.log; // 创建 Observable var observable = new Observable((subscribe) => 阅读全文
posted @ 2018-04-09 10:36 Ajanuw 阅读(1020) 评论(0) 推荐(0) 编辑
摘要: 文档 特性模块 坚持为应用中每个明显的特性创建一个 Angular 模块 坚持把特性模块放在与特性区同名的目录中(例如 app/heroes) 坚持特性模块的文件名应该能反映出特性区的名字和目录(例如 app/heroes/heroes.module.ts) 共享特性模块 坚持在 shared 目录 阅读全文
posted @ 2018-03-28 11:59 Ajanuw 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 前台代码片段 后台代码片段 javascript const Router = require('koa router'); const router = new Router(); const request = require('request'); function getOpenId(cod 阅读全文
posted @ 2018-03-17 08:52 Ajanuw 阅读(1147) 评论(0) 推荐(0) 编辑
摘要: google文档 "https://developers.google.cn/web/fundamentals/web components/customelements" 兼容性 "https://caniuse.com/ search=custom" shadow DOM "https://de 阅读全文
posted @ 2018-02-06 20:15 Ajanuw 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 获取本地的音频 <input type="file" accept="audio/*" capture="microphone" id="recorder"> <audio id="player" controls></audio> <script> var recorder = document. 阅读全文
posted @ 2018-02-06 14:50 Ajanuw 阅读(5140) 评论(0) 推荐(1) 编辑
摘要: google 文档 "https://developers.google.cn/web/updates/2017/02/media session" 阅读全文
posted @ 2018-02-06 14:20 Ajanuw 阅读(824) 评论(0) 推荐(0) 编辑
摘要: <!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7"><![endif]--> <!--[if IE 7]><html class="no-js lt-ie9 lt-ie8"><![endif]--> <!--[if IE 8]><htm 阅读全文
posted @ 2018-02-05 11:46 Ajanuw 阅读(359) 评论(0) 推荐(0) 编辑
摘要: ```html let a = 0; if ('orientation' in screen) { document.getElementById('doc').textContent = ; document.getElementById('model').textContent = ; scre 阅读全文
posted @ 2018-02-03 14:09 Ajanuw 阅读(572) 评论(0) 推荐(0) 编辑
摘要: google网络推送通知 "https://developers.google.cn/web/fundamentals/push notifications/" 服务工作线程:简介 "https://developers.google.cn/web/fundamentals/primers/serv 阅读全文
posted @ 2018-02-02 20:05 Ajanuw 阅读(414) 评论(0) 推荐(0) 编辑
摘要: Pointer events 指针事件 TouchEvent MouseEvent 鼠标事件 See alse: https://developers.google.cn/web/fundamentals/design-and-ux/input/touch/ 阅读全文
posted @ 2018-02-02 13:58 Ajanuw 阅读(540) 评论(0) 推荐(0) 编辑