当用户单击链接时,我正在尝试打开一个新页面。我不能使用Angular 2 Router,因为它没有任何功能可以重定向到外部URL。
所以,我正在使用window.location.href =“ ...”;
html代码:
<button (click)="onNavigate()">Google</tn-submenu-link>
打字稿代码:
onNavigate(){
//this.router.navigateByUrl("https://www.google.com");
window.location.href="https://www.google.com";
}
但是,如何在新标签页中打开它?使用window.location.href时?