Angular 输出中带有参数的路线 404
continue
Project on Angular 13.
Route description
const routes: Routes = [
{
path: '',
component: DefaultLayoutComponent,
children: [
{
path: 'my-path/:my-param',
component: MyComponent
}
]
}
];
and here is the transition to it
this.router.navigate(['my-path'], { queryParams: { my-param: 'value' } });
As a result, I am thrown out on page 404.
Where is my mistake?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果在头部部件中添加了基本标签,则可以检查index.html文件。
you may check your index.html file if there is a base tag added to the head part.