我正在Angular 4框架中开发在线游戏。
完成预加载后,页面应重定向到我的游戏页面。但是我不知道如何在Angular 4中自动重定向。能否请任何人举个例子来说明,这对我会更好。
提前谢谢!
答案 0 :(得分:0)
使用Router.navigate()并在完成预加载后导航到其他页面
export const Moengage = window.moe({
app_id:"APP ID",
debug_logs: 0
});
答案 1 :(得分:0)
根据我的理解,如果您想在页面完全加载后重定向页面,则可以使用ngAfterViewInit
方法,如下所示:
// Import AfterViewInit
import { Component, OnInit, AfterViewInit} from '@angular/core';
export class YourComponent implements OnInit, AfterViewInit {
// YOUR CODE
constructor(private _router: Router) {
};
ngAfterViewInit() {
this._router.navigate(['Your_router_link']);
}
}