本文介绍了使用Angular 2在n秒后自动重定向的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在n秒钟内显示一个页面,然后重定向到另一条路线.
I wanted to display a page for 'n' seconds and then redirect to another route.
在几个stackoverflow帖子中都喜欢( url1 和 url2 )有关在Angular 1.x中'n'秒后自动重定向.但是我很困惑如何在Angular2中实现相同的功能?
Came across a couple of stackoverflow posts (url1 and url2) about auto redirecting after 'n' seconds in Angular 1.x. But I m confused how to implement the same in Angular2?
推荐答案
您可以从@angular/router
注入并使用Router
并在setTimeout
中导航.
You can inject and use Router
from @angular/router
and navigate in setTimeout
.
import { Router } from '@angular/router';
constructor(private router: Router) {}
ngOnInit() {
// do init at here for current route.
setTimeout(() => {
this.router.navigate(['nextRoute']);
}, 5000); //5s
}
这篇关于使用Angular 2在n秒后自动重定向的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!