如何在基本URL角4+中使用params?

时间:2017-10-17 08:54:05

标签: angular angular-routing

我正在开发一款具有特定于公司和国家/地区的网址的应用。

  

mysite.com/company/country

有没有办法将参数添加到基本URL而不是直接将它们添加到路径?

1 个答案:

答案 0 :(得分:0)

试试这样:

致电路由器:

this.router.navigate(['/myUrlpath', "company_name", "country_name"]);

在routes.ts中:

{ path: 'myUrlpath/:company/:country', component: sampleComponent},