完整的网址应为
any-domain-name.com/reset-password?token=xyz
我需要检查url是否为/ reset-password url,否则它将与具有令牌查询参数的任何url一起使用
this.activeRoute.queryParams.subscribe(params=>{
//here I need to check if the url is /reset-password only then assign the token.
this.token = params['token']
}