本文整理匯總了TypeScript中app/core.JhiLanguageHelper類的典型用法代碼示例。如果您正苦於以下問題:TypeScript JhiLanguageHelper類的具體用法?TypeScript JhiLanguageHelper怎麽用?TypeScript JhiLanguageHelper使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了JhiLanguageHelper類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1:
this.router.events.subscribe(event => {
if (event instanceof NavigationEnd) {
this.jhiLanguageHelper.updateTitle(this.getPageTitle(this.router.routerState.snapshot.root));
}
if (event instanceof NavigationError && event.error.status === 404) {
this.router.navigate(['/404']);
}
});
示例2: ngOnInit
ngOnInit() {
this.accountService.identity().then(account => {
this.settingsAccount = this.copyAccount(account);
});
this.languageHelper.getAll().then(languages => {
this.languages = languages;
});
}
示例3: ngOnInit
ngOnInit() {
this.languageHelper.getAll().then(languages => {
this.languages = languages;
});
this.profileService.getProfileInfo().then(profileInfo => {
this.inProduction = profileInfo.inProduction;
this.swaggerEnabled = profileInfo.swaggerEnabled;
});
}
示例4: ngOnInit
ngOnInit() {
this.isSaving = false;
this.route.data.subscribe(({ user }) => {
this.user = user.body ? user.body : user;
});
this.authorities = [];
this.userService.authorities().subscribe(authorities => {
this.authorities = authorities;
});
this.languageHelper.getAll().then(languages => {
this.languages = languages;
});
}
示例5:
this.router.events.subscribe(event => {
if (event instanceof NavigationEnd) {
this.jhiLanguageHelper.updateTitle(this.getPageTitle(this.router.routerState.snapshot.root));
}
});