- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我试图通过在自己的 typescript 文件中定义我的路由模块来将它与另一个模块分开。但是我得到了上面的错误:Component is part of declaration of both the modules:AppRoutingModule and AppModule
共享以下两个模块:
AppRoutingModule
import { NgModule } from '@angular/core'
import { RouterModule, Routes } from '@angular/router'
import { AdminHomeComponent } from './nav/adminhome.component'
import { UserHomeComponent } from './nav/userhome.component'
import { ContactComponent } from './nav/contact.component'
import { LandingComponent } from './nav/mainhome.component'
import { LoginFormComponent } from './nav/login.component'
const appRoutes: Routes = [
{ path: 'login', component: LoginFormComponent },
{ path: 'adminHome', component: AdminHomeComponent },
{ path: 'userHome', component: UserHomeComponent },
{ path: 'contact', component: ContactComponent },
{ path: '', component: LandingComponent }
];
@NgModule({
imports: [
RouterModule.forRoot(appRoutes)
],
exports: [
RouterModule
]
})
export class AppRoutingModule { }
应用模块
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { HttpModule } from '@angular/http';
import { AppRoutingModule} from './app.routing'
import { AdminHomeComponent } from './nav/adminhome.component'
import { UserHomeComponent } from './nav/userhome.component'
import { ContactComponent } from './nav/contact.component'
import { LandingComponent } from './nav/mainhome.component'
import { LoginFormComponent } from './nav/login.component'
import { ShareService } from './nav/ShareService'
//import { PaginationModule } from 'ng2-bootstrap';
//import { Ng2PaginationModule } from 'ng2-pagination';
@NgModule({
imports: [BrowserModule, FormsModule, HttpModule, AppRoutingModule ],
declarations: [AppComponent, AdminHomeComponent, UserHomeComponent, ContactComponent, LandingComponent, LoginFormComponent],
bootstrap: [AppComponent],
providers: [ShareService]
})
export class AppModule { }
我关注了https://angular.io/docs/ts/latest/guide/router.html路由文档却遇到这样的错误。
有人可以看看代码中是否存在错误。谢谢。
最佳答案
我认为您应该将 AdminHomeComponent
和 AppRoutingModule
中引用的所有其他组件从 AppModule
中移到不同的模块中,并且将此模块添加到 AppRoutingModule
的 imports
。
关于angular - 组件是两个模块 :AppRoutingModule and AppModule 声明的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42412445/
我正在构建一个 Angular 应用程序,在我导入并实现“路由模块”之前一切正常 错误信息 我已经经历过,我认为以下不是可能的问题: 语法错误,如多个逗号等 递归调用 路由器模块代码: import
我试图通过在自己的 typescript 文件中定义我的路由模块来将它与另一个模块分开。但是我得到了上面的错误:Component is part of declaration of both the
我安装了所有需要的东西。该项目是生成的。我什至没有进行更改,但是当我尝试预览它并扫描 qrcode 时,出现错误“Type AppRoutingModule 没有 'ngModuleDef' 属性”。
各位程序员 friend 大家好, 需要帮助解决标题中的错误。 这是我的路由模块代码 应用路由.module.ts import { NgModule } from '@angular/core';
我是一名优秀的程序员,十分优秀!