标签: angular routes
我需要根据路由中传递的URL参数为我的angular2应用实现路由保护,例如:
http://myapp.com/test1/sites -------> where my routes use the test1 as a parameter :sitename
所以如果传递的参数== test1则canActivate返回true,否则返回false。
那么如何实现呢?