我试图从http://localhost:4200/?param1=15¶m2=abcdef
中的网址获取查询参数。
我正在使用这个
网址:this._activeRoute.queryParams.subscribe((params: Params) => {
this.p1 = params['param1'];
this.p2 = params['param2'];
});
this.p1
所以,现在我在this.p2
和http://localhost:4200/
中得到了参数我希望从URL中清除查询参数,比如
rails-ujs
请在这里建议我