1
在我的Angular2應用程序中,我需要將一些可選參數傳遞給路由。 因爲它們是可選的,我決定使用queryParams
。查詢參數無法正常工作
我使用下面的代碼來傳遞參數:
public recoverPassword() {
this.router.navigate(
['/access/recover-password',
{ queryParams: { 'email': this.model.email }} ]
);
}
我得到這個網址:
http://localhost:4200/access/recover-password;queryParams=%5Bobject%20Object%5D
正如你所看到的,參數是完全錯誤的。我無法解析它在目標組件。正確的URL應該是:
http://localhost:4200/access/recover-password;[email protected]
我跟着official doc,但我不能找到一個可行的解決方案。
請拼寫檢查您的文章。 –