Angular 2 Routing navigate run in new tab(Use Angular Router naviagte )

后端 未结 5 1297
我在风中等你
我在风中等你 2021-01-01 17:51

How to open a new browser Tab , if using router.navigate .

this.router.navigate([]).then(result => { window.location.href = link; });
5条回答
  •  离开以前
    2021-01-01 17:59

    this will open in new tab :

     this._router.navigate([]).then(result => {  window.open( `/customer/edit/${customer_id_param}`, '_blank'); });
    

提交回复
热议问题