Angular приложение не строит NgModule - PullRequest
0 голосов
/ 12 апреля 2020

У меня есть приложение Angular, но я не понимаю, что говорит мне компилятор, почему приложение не может быть построено. Вот ошибки, которые я получаю от компилятора:

ERROR in src/app/list-items/list-items.component.ts:9:14 -
error NG6002: Appears in the NgModule.imports of AppModule, but could not be resolved to an NgModule class.

Is it missing an @NgModule annotation?

9 export class ListItemsComponent implements OnInit {
               ~~~~~~~~~~~~~~~~~~
src/app/not-found/not-found.component.ts:8:14 - error NG6002: Appears in the NgModule.imports of AppModule, but could
not be resolved to an NgModule class.

Is it missing an @NgModule annotation?

8 export class NotFoundComponent implements OnInit {
               ~~~~~~~~~~~~~~~~~

Это мой list-items.component.ts файл:

import { Component, OnInit, NgModule } from '@angular/core';

@Component({
  selector: 'app-list-items',
  templateUrl: './list-items.component.html',
  styleUrls: ['./list-items.component.css']
})
export class ListItemsComponent implements OnInit {

  constructor() { }

  ngOnInit(): void {
  }
}

Это мой not-found.component.ts файл:

import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-not-found',
  templateUrl: './not-found.component.html',
  styleUrls: ['./not-found.component.css']
})
export class NotFoundComponent implements OnInit {

  constructor() { }

  ngOnInit(): void {
  }
}

Вот мой app.module.ts файл:

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { HttpClientModule } from '@angular/common/http';  
import { ItemService } from './items.service';
import { NewItemFormComponent } from './new-item-form/new-item-form.component';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatInputModule } from '@angular/material/input';
import { MatButtonModule } from '@angular/material/button';
import { MatMenuModule } from '@angular/material/menu';
import { MatIconModule } from '@angular/material/icon';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { FormsModule } from '@angular/forms';
import { NavigationMenuComponent } from './navigation-menu/navigation-menu.component';
import { ListItemsComponent } from './list-items/list-items.component';
import { NotFoundComponent } from './not-found/not-found.component';
import { BrowserModule } from '@angular/platform-browser';

const appRoutes: Routes = [ {
  path: '',                     //default component to display
   component: ListItemsComponent
 },       {
   path: 'addItem',         //when items added 
   component: NewItemFormComponent
 },       {
   path: 'listItems',       //when items listed
   component: ListItemsComponent
 },       {
   path: '**',                 //when path cannot be found
   component: NotFoundComponent
 }
];

@NgModule({
  declarations: [
    AppComponent,
    NewItemFormComponent,
    NavigationMenuComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule,
    HttpClientModule,
    MatFormFieldModule,
    MatInputModule,
    MatButtonModule,
    MatIconModule,
    MatMenuModule,
    BrowserAnimationsModule,
    FormsModule,
    RouterModule.forRoot(appRoutes),
    ListItemsComponent,
    NotFoundComponent
  ],

  providers: [ItemService],
  bootstrap: [AppComponent]
})
export class AppModule { }

Кто-нибудь случайно понял, что компилятор пытается рассказать мне о NgModule?

1 Ответ

1 голос
/ 12 апреля 2020

Удалите оба компонента из раздела импорта в файле app.modules и переместите их в объявления.

Вы не создаете пользовательский модуль; Вы только создаете компонент. Импортируйте его правильно, и у вас больше не будет проблем.

Я также предлагаю вам использовать генератор angular cli для генерации новых компонентов.

ng generate component test
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...