作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用 Angular 7 开发个人投资组合网站,但在让路由正常工作时遇到了问题。该站点打开但页面上不显示任何内容。如果我注释掉我的路径,网站就会正确加载。我找不到解决此问题的任何资源。
//这是我在运行 ng serve 时在命令行上收到的内容。
「wdm」: Compiled successfully.
ERROR in src/app/app.module.ts(20,31): error TS2304: Cannot find name 'Contact'.
src/app/app.module.ts(21,33): error TS2304: Cannot find name 'Portfolio'.
//这是让路由正常工作的代码。
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { SideBarComponent } from './side-bar/side-bar.component';
import { MainContentComponent } from './main-content/main-content.component';
import { NavigationBarComponent } from './navigation-bar/navigation-bar.component';
import { RouterModule, Routes } from '@angular/router';
import { PortfolioComponent } from './portfolio/portfolio.component';
import { ContactComponent } from './contact/contact.component';
const appRoutes: Routes = [
{path: 'contact', redirectTo: '/contact', pathMatch:'full'},
{path: 'portfolio', redirectTo: '/portfolio', pathMatch:'full'},
//this seems to be where I get the problem
{ path: 'contact', component: Contact.Component },
{ path: 'portfolio', component: Portfolio.Component }
]
@NgModule({
declarations: [
AppComponent,
SideBarComponent,
MainContentComponent,
NavigationBarComponent,
PortfolioComponent,
ContactComponent,
],
imports: [
BrowserModule,
RouterModule.forRoot(appRoutes,{ enableTracing: true })
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
最佳答案
请删除“Contact.Component”和“Portfolio.Component”中的点在第 20 和 21 行中是这样的:
{ path: 'contact', component: ContactComponent },
{ path: 'portfolio', component: PortfolioComponent }
关于 Angular 7 : 'Cannot find name ' ',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55223676/
我是一名优秀的程序员,十分优秀!