1 import {CanActivate} from "@angular/router"; 2 3 export class PermissionGuard implements CanActivate { 4 canActivate() { 5 let hasPermission: boolean = Math.random() < 0.5; 6 if (!hasPermission){ 7 console.log('用戶沒有權限'); 8 } 9 return hasPermission; 10 } 11 12 }
在一個文件裏面導出該類,而後使用守衛路由,實現,後者從新配製一個新的路由dom