gpt4 book ai didi

html - 路由 Angular 4/5 隐藏组件

转载 作者:搜寻专家 更新时间:2023-10-30 21:19:31 25 4
gpt4 key购买 nike

刚开始使用 Angular 4/5 进行路由,我正在按照他们网站上的 Angular 教程进行操作。我有一个 Angular 应用程序,我希望它能够有两个单独的页面。现在主页是localhost:8870/dr3-interface我想要一个包含新组件的新页面 localhost:8870/dr3-interface/manage_cycles_instances

我的问题是当我点击我的链接时 Manage cycles instances它显示了我所有的 app.component组件,而不仅仅是我决定在 /manage_cycles_instances 上显示的组件.我试图使用 *ngIf 隐藏它们但没有结果。有什么想法吗?

应用程序组件.html :

<div style="text-align:left">
<h1>{{ title }}</h1>
</div>

<nav>
<a routerLink="/manage_cycles_instances" routerLinkActive="active"> Manage cycles instances</a>
</nav>
<router-outlet></router-outlet>

<div *ngIf="router = '/dr3-interface'">
<h2><d-table></d-table></h2>
</div>
<br/>
<form-upload></form-upload>
<br/>
<list-upload></list-upload>

应用程序路由.module.ts :

import { NgModule }              from '@angular/core';
import { RouterModule, Routes } from '@angular/router';

import { DataTableComponent } from './datatable/data-table.component';


const appRoutes: Routes = [
{ path: 'manage_cycles_instances', component: DataTableComponent },
/* TO DO : page error
{ path: '**', component: ... }
*/
];

@NgModule({
imports: [
RouterModule.forRoot(
appRoutes,
{ enableTracing: true } // <-- debugging purposes only
)
],
exports: [
RouterModule
]
})
export class AppRoutingModule {}

应用程序模块.ts:

import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NgModule } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';

import {
//all material modules
} from '@angular/material';

import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module';

import { DataTableComponent } from './datatable/data-table.component';
import { DetailsUploadComponent } from './upload/details-upload/details-upload.component';
import { FormUploadComponent } from './upload/form-upload/form-upload.component';
import { ListUploadComponent } from './upload/list-upload/list-upload.component';

@NgModule({

imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
HttpClientModule,
//material modules
],
declarations: [
AppComponent,
DataTableComponent,
DetailsUploadComponent,
FormUploadComponent,
ListUploadComponent
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}

最佳答案

你的路线应该是这样的:

const appRoutes: Routes = [
{ path: 'dr3-interface', component: DrThreeComponent, children: [ // I don't know which component to use for this route
{ path: 'manage_cycles_instances', component: DataTableComponent },
]},
];

因为你想要嵌套路由,所以你应该创建嵌套路由。请注意,您的 DrThreeComponent 应该有一个 router-outlet,因为它有 child 。

您不需要在代码中使用条件,因为路由器会处理组件的显示。

解释:

您首先要有一个 index.html 文件。它的主体中只包含一个标签,通常是app-root。此标记将被您的引导组件替换,通常是AppComponent

如果你想路由你的应用程序,你需要使用路由器。需要几个步骤:

1 - 在组件中放置一个 router-outlet 标签来路由其他组件(这里是应用程序组件)

2 - 创建你的路线(你做到了,我在我的回答中更正了它)。

3 - 如果是子路由(用斜杠分隔的路由,就像你的路由一样),请在每个父组件中放置一个路由器导出标记,并将 children 属性放入相应的路由中。

在您的情况下,如果我们要制作一棵树,它看起来像这样:

index.html
|
|--app component (with router outlet)
|
|--DrThree component (with router outlet)
|
|--ManageCycles component

所以基本上,index 会显示 app,然后 app 会显示 DrThree,然后 DrThree 会显示 ManageCycles

关于html - 路由 Angular 4/5 隐藏组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48785921/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com