当我在做新的时候,它在app.module.ts

时间:2018-03-27 07:31:30

标签: angular

  

我正在创建一个新组件并且它提到它将新组件添加到module.ts但是当我检查我的module.ts时它确实显示了新组件

 $ ng generate component newone
      create src/app/newone/newone.component.html (25 bytes)
      create src/app/newone/newone.component.spec.ts (628 bytes)
      create src/app/newone/newone.component.ts (269 bytes)
      create src/app/newone/newone.component.css (0 bytes)
      update src/app/app.module.ts (602 bytes)
  

这是我的app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import {FormsModule} from '@angular/forms';
import {HttpModule} from '@angular/http';


    import { AppComponent } from './app.component';


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

1 个答案:

答案 0 :(得分:0)

在终端尝试此步骤。这可能是angular cli

版本中的问题

npm uninstall -g angular-cli @ angular / cli

npm uninstall angular-cli @ angular / cli --save-dev

npm cache clean

npm install -g @ angular / cli @ latest

npm install --save-dev @ angular / cli @ latest

让我们用这个有趣的实用工具将所有本地的包再次更新到最新的包:

npm install -g npm-check-updates

ncu -u -a --packageFile package.json

rm -rf node_modules

npm install