我正在开发一款具有特定于公司和国家/地区的网址的应用。
mysite.com/company/country
有没有办法将参数添加到基本URL而不是直接将它们添加到路径?
答案 0 :(得分:0)
试试这样:
致电路由器:
this.router.navigate(['/myUrlpath', "company_name", "country_name"]);
在routes.ts中:
{ path: 'myUrlpath/:company/:country', component: sampleComponent},