作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一些特定要求,必须使用现有 URL。现有 URL 已被很好地编入索引并用于促销和许多事件,因此没有机会修改它。
现有的 URL 就像 - www.xyz.com/search//65.5445/-122.56454/Listing-name/All
虽然在 Angular 中定义 URL,如
const routes: Routes = [
{ path: '', component: SearchpagesComponent ,
children: [
{
path: 'search/:schkey/:lat/:lng/:name/:filter', loadChildren: './search/search.module#SearchModule',
// here schkey is optinal just required blank slashes
}
]
}
];
并在路由器链接中
<a [routerLink]="['/search/','','37.7749295','-122.41941550000001','San-Francisco','All']" > Goto Search Page </a>
当前:如果我点击 Routerlink 定义的 anchor ,上面的代码是有效的。它的重定向和正在加载的组件,但刷新页面组件时未加载并重定向到根 URL。
应加载直接链接或刷新页面组件上的www.xyz.com/search//37.7749295/-122.41941550000001/San-Francisco/
。并且双斜杠 search//
应该被保留。
用于复制 - https://stackblitz.com/edit/angular-routing-child-routes-6ydor6
Github 问题 - https://github.com/angular/angular/issues/32853
最佳答案
原因是因为:schkey
留空
您可以使用或不使用某些参数定义多个路由。
{
path: 'search/:schkey/:lat/:lng/:name/:filter',
component: SearchpageComponent
},
{
path: 'search/:lat/:lng/:name/:filter',
component: SearchpageComponent
}
基本上,而不是:
http://.../search//37.7749295/-122.41941550000001/San-Francisco/All
您的网址将是:
http://.../search/37.7749295/-122.41941550000001/San-Francisco/All
关于angular - 如何在 Angular 5 中传递带有保留 URL 的可选路由参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58059143/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!