05 2018 档案
Ionic 中出现 NullInjectorError: No provider for HttpClient 的解决办法
摘要:1. 在 app.module.ts 中引入模块 2. 在 @NgModule.imports 中引入它 阅读全文
posted @ 2018-05-29 23:36 RexfieldVon 阅读(4399) 评论(0) 推荐(1) 编辑
Ionic3 在 components 中使用 pipes
摘要:1. 使用 ionic g pipe xxx 创建 Pipe 2. 在 components 文件夹下的 components.module.ts 文件中添加 PipesModule 引用: 3. 在 @NgModule 中的 imports 中添加 PipesModule: 4. 在自己的 com 阅读全文
posted @ 2018-05-27 20:12 RexfieldVon 阅读(274) 评论(0) 推荐(0) 编辑
C++指针的自动管理方法
摘要:方法一: 使用智能指针unique_ptr<>、shared_ptr<>进行自动管理。 方法二: 在局部环境下使用局部变量对其进行解引用,在函数结束的时候自动析构。 阅读全文
posted @ 2018-05-05 20:34 RexfieldVon 阅读(220) 评论(0) 推荐(0) 编辑