本文整理汇总了TypeScript中ng-jhipster.JhiLanguageService类的典型用法代码示例。如果您正苦于以下问题:TypeScript JhiLanguageService类的具体用法?TypeScript JhiLanguageService怎么用?TypeScript JhiLanguageService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了JhiLanguageService类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor(
private jhiLanguageService: JhiLanguageService,
private modalService: NgbModal,
private healthService: JhiHealthService
) {
this.jhiLanguageService.setLocations(['health']);
}
开发者ID:Anuj28282828,项目名称:tutorials,代码行数:8,代码来源:health.component.ts
示例2: constructor
constructor(
private jhiLanguageService: JhiLanguageService,
private salesOrderService: SalesOrderService,
public activeModal: NgbActiveModal,
private eventManager: EventManager
) {
this.jhiLanguageService.setLocations(['salesOrder', 'paymentType', 'orderChannel', 'orderType', 'orderStatus']);
}
开发者ID:chenshao0594,项目名称:eshop,代码行数:8,代码来源:sales-order-delete-dialog.component.ts
示例3: constructor
constructor(
private eventManager: EventManager,
private jhiLanguageService: JhiLanguageService,
private shoppingCartService: ShoppingCartService,
private route: ActivatedRoute
) {
this.jhiLanguageService.setLocations(['shoppingCart']);
}
开发者ID:chenshao0594,项目名称:eshop,代码行数:8,代码来源:shopping-cart-detail.component.ts
示例4: constructor
constructor(
private jhiLanguageService: JhiLanguageService,
private postService: PostService,
public activeModal: NgbActiveModal,
private eventManager: EventManager
) {
this.jhiLanguageService.setLocations(['post']);
}
开发者ID:Anuj28282828,项目名称:tutorials,代码行数:8,代码来源:post-delete-dialog.component.ts
示例5: constructor
constructor(
private eventManager: EventManager,
private jhiLanguageService: JhiLanguageService,
private salesOrderService: SalesOrderService,
private route: ActivatedRoute
) {
this.jhiLanguageService.setLocations(['salesOrder', 'paymentType', 'orderChannel', 'orderType', 'orderStatus']);
}
开发者ID:chenshao0594,项目名称:eshop,代码行数:8,代码来源:sales-order-detail.component.ts
示例6: constructor
constructor(
private jhiLanguageService: JhiLanguageService,
private merchantLogService: MerchantLogService,
public activeModal: NgbActiveModal,
private eventManager: EventManager
) {
this.jhiLanguageService.setLocations(['merchantLog']);
}
开发者ID:chenshao0594,项目名称:eshop,代码行数:8,代码来源:merchant-log-delete-dialog.component.ts
示例7: constructor
constructor(
private jhiLanguageService: JhiLanguageService,
private fileHistoryService: FileHistoryService,
public activeModal: NgbActiveModal,
private eventManager: EventManager
) {
this.jhiLanguageService.setLocations(['fileHistory']);
}
开发者ID:chenshao0594,项目名称:eshop,代码行数:8,代码来源:file-history-delete-dialog.component.ts
示例8: constructor
constructor(
private jhiLanguageService: JhiLanguageService,
private systemNotificationService: SystemNotificationService,
public activeModal: NgbActiveModal,
private eventManager: EventManager
) {
this.jhiLanguageService.setLocations(['systemNotification']);
}
开发者ID:chenshao0594,项目名称:eshop,代码行数:8,代码来源:system-notification-delete-dialog.component.ts
示例9: constructor
constructor(
private eventManager: EventManager,
private jhiLanguageService: JhiLanguageService,
private customerService: CustomerService,
private route: ActivatedRoute
) {
this.jhiLanguageService.setLocations(['customer', 'customerGender']);
}
开发者ID:chenshao0594,项目名称:eshop,代码行数:8,代码来源:customer-detail.component.ts
示例10: resolve
this.principal.identity(true).then(account => {
// After the login the language will be changed to
// the language selected by the user during his registration
if (account !== null) {
this.languageService.changeLanguage(account.langKey);
}
resolve(data);
});
开发者ID:PierreBesson,项目名称:jhipster-sample-app,代码行数:8,代码来源:login.service.ts
注:本文中的ng-jhipster.JhiLanguageService类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论