详解angular笔记路由之angular(2)

// 新建一个文件 import {CanDeactivate} from '@angular/router' import {AppComponent} from "../app.component"; /** * 处理用户离开 * 接收一个泛型 */ export class OutGuard implements CanDeactivate<AppComponent>{ // component 里面保存着AppComponent的数据 canDeactivate(component:AppComponent){ return window.confirm('您还没有保存确定要离开吗?') } }

修改路由的配置

{path:'home',component:HomeComponent,children:[ {path:'',component:IndexComponent} ],canActivate:[LoginGuard],canDeactivate:[OutGuard]},

providers:[LoginGuard,OutGuard]

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wygwfs.html