Routing导航在新选项卡中运行

Routing导航在新选项卡中运行

本文介绍了Angular 2 Routing导航在新选项卡中运行(使用Angular Router naviagte)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

如果使用router.navigate,如何打开新的浏览器选项卡.

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

this.router.navigate([]).then(result => { window.location.href = link; });

推荐答案

尝试一下.

this.router.navigate([]).then(result => {  window.open(link, '_blank'); });

这篇关于Angular 2 Routing导航在新选项卡中运行(使用Angular Router naviagte)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 21:12