gpt4 book ai didi

Angular 2获取当前路线

转载 作者:太空狗 更新时间:2023-10-29 16:59:07 25 4
gpt4 key购买 nike

所以我需要以某种方式检查我是否在主页上做某事,而在其他页面上不这样做。该组件还导入了所有页面。

如果我在主页上,如何检测该组件???

谢谢

最佳答案

试试这个,

import { Router } from '@angular/router';
export class MyComponent implements OnInit {

constructor(private router:Router) { ... }

ngOnInit() {
let currentUrl = this.router.url; /// this will give you current url

// your logic to know if its my home page.
}

}

关于Angular 2获取当前路线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42538251/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com