05 2018 档案

摘要:// 创建xml数据 let doc = document.implementation.createDocument('', 'root', null); // 创建一个文档 let root =doc.documentElement; // 获取文档 let user = doc.createE 阅读全文
posted @ 2018-05-30 21:37 Ajanuw 阅读(78) 评论(0) 推荐(0)
摘要:vim 官网 vim 插件列表 vim-plug 插件管理器 安装 插件管理器 $ curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/ 阅读全文
posted @ 2018-05-12 11:39 Ajanuw 阅读(463) 评论(0) 推荐(1)
摘要:简单的安装 "@ngxs/schematics" 1. 配置 src/store 下的config文件 (完成todo)。 2. 在Core模块中导入NgxsStoreModule模块,没有创建Core就直接在AppModule中导入。 "官网文档" ng6,rxjs6.0.0,ngxs3.0.1 阅读全文
posted @ 2018-05-05 00:02 Ajanuw 阅读(1972) 评论(0) 推荐(1)
摘要:操作符文档 api 列表 什么是RxJS 运算符? 创建自定义运算符 map 系列 map 类似于 Array.prototype.map() concatMap 将映射后的流合并输出到一个流 mergeMap 将映射后的流合并输出到一个流 switchMap 会停止发出先前发出的内部 Observ 阅读全文
posted @ 2018-05-03 18:03 Ajanuw 阅读(13040) 评论(0) 推荐(2)