本文整理匯總了TypeScript中nativescript-angular/router.RouterExtensions.navigate方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript RouterExtensions.navigate方法的具體用法?TypeScript RouterExtensions.navigate怎麽用?TypeScript RouterExtensions.navigate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類nativescript-angular/router.RouterExtensions
的用法示例。
在下文中一共展示了RouterExtensions.navigate方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1:
this.connectivityService.startMonitoring((newConnectionType: ConnectionType) => {
if (newConnectionType === ConnectionType.none) {
this.router.navigate(['/network'], { clearHistory: true, transition: { name: 'slideTop' } });
} else {
this.router.navigate(['/location'], { clearHistory: true, transition: { name: 'slideTop' } });
}
});
示例2: onPlayTap
onPlayTap() {
this.consoleLogMsg('game.component', 'onPlayTap');
switch(this.level) {
case 3:
this._router.navigate(['/level-three'], Config.transition);
break;
case 2:
this._router.navigate(['/level-two'], Config.transition);
break;
default:
this._router.navigate(['/level-one'], Config.transition);
break;
}
}
示例3: canLoad
canLoad(): boolean {
if (getBoolean('isLoggedin')) {
// console.log(this.logged_user_group)
if (this.logged_user_group == undefined) {
this._routerExtensions.navigate(["/dashboard/" + this.user_id], { clearHistory: true });
return true;
}
else {
this._routerExtensions.navigate(["/franchise-user"], { clearHistory: true });
return true;
}
}
this._routerExtensions.navigate(["/login"], { clearHistory: true });
return false;
}
示例4: launchExample
public launchExample() {
if (hasKey("gotoexample")) {
let value = getString("gotoexample");
remove("gotoexample");
this.router.navigate([value]);
}
}
示例5: checkConnection
checkConnection() {
var connection: ConnectionType = this.getConnectionType();
console.log('checkConnecton', connection)
if (connection == ConnectionType.none) {
this.router.navigate(['/network'], { clearHistory: true });
}
}
示例6:
}).then(() => {
this._router.navigate([
'/:target', {
target: this.board.nextScreen
}
], Config.transition);
});
示例7: flipToNextPage
// << router-page-back
// >> router-page-transition-code
flipToNextPage() {
this.routerExtensions.navigate(["/main"], {
transition: {
name: "flip",
duration: 2000,
curve: "linear"
}
});
}
示例8: onAddTap
onAddTap(): void {
let options: NavigationOptions = {
clearHistory: true
};
this.routerExtensions.navigate(
["detail", this.pages.length],
options);
}
示例9: canActivate
canActivate() {
if (this.loginService.isLogged) {
console.log("GUARD: authenticated");
return true;
}
else {
console.log("GUARD: redirecting to login");
this.nav.navigate(["/login"]);
return false;
}
}