我使用下面的代码在python中编码我的URL。
args = {"key": uid, "secret": OTP}
url = "http://127.0.0.1:4200/emailverify/?{}".format(urllib.parse.urlencode(args))
然后,我需要在我的angular应用程序中阅读uid和OTP。我试过了
this.router.routerState.root.params.subscribe(params => {
console.log('my parameters: ', params);
});
在我的TS文件中,它给出了一个空的对象数组。我该怎么办?
constructor(private _router: ActivatedRouteSnapShot){}
ngOnInit() {
this._router.queryParams.subscribe((params)=>{
console.log(params);
});
}