Angular에서 'pathmatch : full'은 무엇이며 어떤 효과가 있습니까?
여기에서는 pathmatch를 전체로 사용하고이 pathmatch를 삭제하면 앱을로드하거나 프로젝트를 실행하지도 않습니다.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpModule } from '@angular/http';
import { RouterModule } from '@angular/router';
import { AppComponent } from './app.component';
import { WelcomeComponent } from './home/welcome.component';
/* Feature Modules */
import { ProductModule } from './products/product.module';
@NgModule({
imports: [
BrowserModule,
HttpModule,
RouterModule.forRoot([
{ path: 'welcome', component: WelcomeComponent },
{ path: '', redirectTo: 'welcome', pathMatch: 'full' },
{ path: '**', redirectTo: 'welcome', pathMatch: 'full' }
]),
ProductModule
],
declarations: [
AppComponent,
WelcomeComponent
],
bootstrap: [ AppComponent ]
})
export class AppModule { }
pathMatch = 'full'
URL 일치의 일치하지 않는 나머지 세그먼트가 접두사 경로 일 때 경로 적중이 발생합니다.
pathMatch = 'prefix'
나머지 URL 이 리디렉션 경로의 접두사 경로로 시작 되면 라우터에 리디렉션 경로와 일치하도록 지시합니다 .
참조 : https://angular.io/guide/router#set-up-redirects
pathMatch: 'full'
즉, 전체 URL 경로가 일치해야하며 경로 일치 알고리즘에 의해 사용됩니다.
pathMatch: 'prefix'
즉, 경로가 URL의 시작과 일치하는 첫 번째 경로가 선택되지만 경로 일치 알고리즘은 나머지 URL이 일치하는 하위 경로를 계속 검색합니다.
RouterModule.forRoot([
{ path: 'welcome', component: WelcomeComponent },
{ path: '', redirectTo: 'welcome', pathMatch: 'full' },
{ path: '**', component: 'pageNotFoundComponent' }
])
사례 1 pathMatch:'full'
:이 경우 앱이 localhost:4200
(또는 일부 서버)에서 실행되면 URL이 다음과 같으므로 기본 페이지가 시작 화면이됩니다.https://localhost:4200/
와일드 카드로 인해 pageNotFound 화면으로 https://localhost:4200/gibberish
리디렉션되는 경우path:'**'
사례 2 pathMatch:'prefix'
:
경로 { path: '', redirectTo: 'welcome', pathMatch: 'prefix' }
에이 있는 경우 모든 URL이 path:''
정의 된 것과 일치하므로 이제 와일드 카드 경로에 도달하지 않습니다 .
'code' 카테고리의 다른 글
파이썬에서 부동 소수점 무한대 리터럴을 어떻게 입력합니까? (0) | 2020.11.02 |
---|---|
ES6-클래스 내에서 정적 메서드 호출 (0) | 2020.11.01 |
C ++에서 const char *에 const char을 할당 할 수있는 이유는 무엇입니까?! (0) | 2020.11.01 |
Spark에는 어떤 클러스터 유형을 선택해야합니까? (0) | 2020.11.01 |
@ 1x, @ 2x 및 @ 3x iOS 이미지가 필요한 이유는 무엇입니까? (0) | 2020.11.01 |