为什么模块没有找到角度误差

时间:2018-04-14 10:00:28

标签: javascript angular

我在module not found error中遇到错误我已安装该模块。

enter image description here

这是我的代码 https://stackblitz.com/edit/angular-bup8gb

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpClientModule } from '@angular/common/http'
import { DataService } from './dataservice';   // our custom service, see below
import { AppComponent } from './app.component';

@NgModule({
  imports:      [ BrowserModule ,HttpClientModule],
      providers: [DataService],
  declarations: [ AppComponent ],
  bootstrap:    [ AppComponent ]
})
export class AppModule { }

0 个答案:

没有答案