Angular2如何在我的网址

时间:2017-07-17 17:20:46

标签: angular routing angular2-routing

你好我想尝试将一些字符串参数添加到导航网址中 this.router.navigate(['/merchant/setpassword?acc='+response.infoCode]);
但是当我使用它时,将我重定向到

  

/merchant/setpassword%3Facc%3DeyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJtZXppYW4iLCJjb3VudHJ5IjoiOTYiLCJjcmVhdGVkIjoxNTAwMzExODk2MDQ5LC

我的问题在于%3Facc%D我希望这成为?acc =

1 个答案:

答案 0 :(得分:3)

试试这个,

this.router.navigate( [
  'url', { id: 'companyId', param1: 'value1'
}]);

检查,  How to handle query parameters in angular 2