1. 在 app.module.ts 中引入模块

import { HttpClientModule } from '@angular/common/http';

2. 在 @NgModule.imports 中引入它

@NgModule({
    ......
    imports: [
        ......
        HttpClientModule,
        ......
    ],
    ......
})

 

posted on 2018-05-29 23:36  RexfieldVon  阅读(4399)  评论(0编辑  收藏  举报