要在新标签页中打开带有查询字符串的URL,可以使用Angular的Router的navigate()
方法,并将target
参数设置为'_blank'
。
以下是一个示例代码:
app.module.ts
中导入了RouterModule
和Routes
:import { RouterModule, Routes } from '@angular/router';
app.module.ts
中,定义一个路由数组:const routes: Routes = [
{ path: 'user', component: UserComponent },
// 其他路由定义...
];
app.component.ts
或任何其他组件中,导入Router
并注入到构造函数中:import { Router } from '@angular/router';
constructor(private router: Router) { }
navigate()
方法并将target
参数设置为'_blank'
:openUrlInNewTab() {
const urlWithQueryParams = '/user?id=123'; // 带有查询字符串的URL
this.router.navigate([urlWithQueryParams], { queryParamsHandling: 'merge', target: '_blank' });
}
在上面的代码中,我们使用navigate()
方法将带有查询字符串的URL作为参数传递,然后使用queryParamsHandling: 'merge'
来合并现有的查询参数,最后将target
参数设置为'_blank'
以在新标签页中打开URL。
请注意,在使用'_blank'
作为target
参数时,浏览器可能会因为安全性原因而阻止弹出新标签页。如果您遇到类似的问题,请确保您的浏览器设置允许在新标签页中打开URL。