Angular App投掷无法通过URL中的XSS脚本匹配任何路由错误:
我正在Angular 4中开发应用程序。当我尝试为功能模块编写路由时,出现错误消息:错误:无法匹配任何路由。
这是我使用的路线代码:
const ROUTES: Routes = [
{path: '', redirectTo: '/', pathMatch: 'full'},
{path: 'test/:name', component: TestCompnent},
{path: '**', component: TestCompnent}
];
当路由是诸如test / angular或test / some-course-name之类的路由,但是当我尝试将某些XSS脚本注入同一路由时,例如,
test/<script>alert('hello')</script>,
它抛出错误为
错误:无法匹配任何路由。网址段:“ hello” 错误:无法匹配任何路线。网址段:“ hello”