gpt4 book ai didi

Angular 2 相当于 window.location.href?

转载 作者:太空狗 更新时间:2023-10-29 17:07:02 27 4
gpt4 key购买 nike

如何在 Angular 2 中导航到不同的 URL?我知道我们可以使用 JavaScript 的

window.location.href = '...';

但这似乎是错误的并且会导致页面刷新。我很确定 Angular 2 中应该有允许您在 URL 之间移动而无需刷新页面的功能。我似乎无法在文档中找到它。

提前致谢!

最佳答案

根据文档,您可以使用Router 及其navigate 功能来更改当前状态,并在必要时传递参数:

import {Component, ...} from 'angular2/angular2';
import {Router, ...} from 'angular2/router';
import {HomeCmp} from '../home/home';

@Component({
selector: 'app',
// params of your component here
})
@RouteConfig([
{ path: '/', component: HomeCmp, as: 'MyHome' },
// your other states here
])

export class AppCmp {
router: Router;
constructor(router: Router) {
this.router = router;
}
navigateToHome() {
// for example, that's how we can navigate to our home route
this.router.navigate(['./MyHome', {param: 3}]);
}
}

这是 official documentation 的链接.

这是一个 link以使用 Router 的一个很好的例子来播种项目。

关于Angular 2 相当于 window.location.href?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33323049/

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