code

Angular에서 'pathmatch : full'은 무엇이며 어떤 효과가 있습니까?

codestyles 2020. 11. 1. 18:10
반응형

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:''정의 된 것과 일치하므로 이제 와일드 카드 경로에 도달하지 않습니다 .

참고 URL : https://stackoverflow.com/questions/42992212/in-angular-what-is-pathmatch-full-and-what-effect-does-it-have

반응형