當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript ng-jhipster.EventManager類代碼示例

本文整理匯總了TypeScript中ng-jhipster.EventManager的典型用法代碼示例。如果您正苦於以下問題:TypeScript EventManager類的具體用法?TypeScript EventManager怎麽用?TypeScript EventManager使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了EventManager類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: onSaveSuccess

 private onSaveSuccess(result: ProductReview) {
     this.eventManager.broadcast({ name: 'productReviewListModification', content: 'OK'});
     this.isSaving = false;
     this.productReview = result;
 }
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:5,代碼來源:product-review-dialog.component.ts

示例2: registerChangeInDeliveries

 registerChangeInDeliveries() {
     this.eventSubscriber = this.eventManager.subscribe('deliveryListModification', (response) => this.load(this.delivery.id));
 }
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:3,代碼來源:delivery-detail.component.ts

示例3: registerChangeInProductAvailabilities

 registerChangeInProductAvailabilities() {
     this.eventSubscriber = this.eventManager.subscribe('productAvailabilityListModification', (response) => this.loadAll());
 }
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:3,代碼來源:product-availability.component.ts

示例4: registerChangeInOrderStatusHistories

 registerChangeInOrderStatusHistories() {
     this.eventSubscriber = this.eventManager.subscribe('orderStatusHistoryListModification', (response) => this.load(this.orderStatusHistory.id));
 }
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:3,代碼來源:order-status-history-detail.component.ts

示例5: registerChangeInUsers

 registerChangeInUsers() {
     this.eventManager.subscribe('userListModification', (response) => this.loadAll());
 }
開發者ID:Anuj28282828,項目名稱:tutorials,代碼行數:3,代碼來源:user-management.component.ts

示例6: registerChangeInTaxRates

 registerChangeInTaxRates() {
     this.eventSubscriber = this.eventManager.subscribe('taxRateListModification', (response) => this.loadAll());
 }
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:3,代碼來源:tax-rate.component.ts

示例7: onSaveSuccess

 private onSaveSuccess(result: OrderTotal) {
     this.eventManager.broadcast({ name: 'orderTotalListModification', content: 'OK'});
     this.isSaving = false;
     this.orderTotal = result;
 }
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:5,代碼來源:order-total-dialog.component.ts

示例8: registerChangeInContents

 registerChangeInContents() {
     this.eventSubscriber = this.eventManager.subscribe('contentListModification', (response) => this.loadAll());
 }
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:3,代碼來源:content.component.ts

示例9: onSaveSuccess

 private onSaveSuccess(result: DigitalProduct) {
     this.eventManager.broadcast({ name: 'digitalProductModification', content: 'OK'});
     this.isSaving = false;
 }
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:4,代碼來源:digital-product-detail.component.ts

示例10: registerChangeInPosts

 registerChangeInPosts() {
     this.eventSubscriber = this.eventManager.subscribe('postListModification', (response) => this.reset());
 }
開發者ID:Anuj28282828,項目名稱:tutorials,代碼行數:3,代碼來源:post.component.ts


注:本文中的ng-jhipster.EventManager類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。