FE/Angular
[ ANGULAR ] onSameUrlNavigation 동일 페이지 리로드
HEON.D
2023. 2. 1. 05:01
What is the use of onSameUrlNavigation property in Angular( versions greater than 5)
Recently I have heard about a property called onSameUrlNavigation where you can set it to "reload". I have googled about it but there are not many articles which shows the use of that property. Can
stackoverflow.com
app-routing.module.ts 수정
@NgModule({
imports: [RouterModule.forRoot(routes, { onSameUrlNavigation: 'reload' })],
exports: [RouterModule]
})