How to reload a page in Angular 8 the proper way

前端 未结 6 1887
迷失自我
迷失自我 2021-01-07 15:17

NB. I\'ve got a set of resulting from googling but, as I explain at the end, I sense that they aren\'t reliable, due to diversity.

I have two utility method

6条回答
  •  悲&欢浪女
    2021-01-07 15:21

    on your app-routing-module.ts pls verify you have the {onSameUrlNavigation: 'reload'}

    @ngModule({
     imports: [RouterModule.forRoot(routes, {onSameUrlNavigation: 'reload'})],
     exports: [RouterModule],
     })
    

提交回复
热议问题