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


TypeScript Store.dispatch方法代碼示例

本文整理匯總了TypeScript中@ngrx/store.Store.dispatch方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Store.dispatch方法的具體用法?TypeScript Store.dispatch怎麽用?TypeScript Store.dispatch使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@ngrx/store.Store的用法示例。


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

示例1: tap

tap((action: BookActions.Load) => this.store.dispatch(action)),
開發者ID:AlexChar,項目名稱:platform,代碼行數:1,代碼來源:book-exists.guard.ts

示例2:

 .subscribe((x) => {
     console.log("Inactivity interval expired! Dispatching timeout event")
     store.dispatch({type: ACTIVITY_TIMEOUT_OCCURRED});
 });
開發者ID:AttentiaHVDA,項目名稱:experiments,代碼行數:4,代碼來源:auto-logout.service.ts

示例3: onNewMessage

 onNewMessage(input: any) {
   this.store.dispatch(new SendNewMessageAction({text: input.value, threadId: this.uiState.currentThreadId,
                       participantId: this.uiState.userId}));
   input.value = '';
 }
開發者ID:MidoShahin,項目名稱:Chat-App-using-ngrx-store,代碼行數:5,代碼來源:message-section.component.ts

示例4: onPhoneToJobCenter

 onPhoneToJobCenter(): void {
     this.store.dispatch(new PhoneToOpenedAction('jobCenter'));
 }
開發者ID:alv-ch,項目名稱:job-room,代碼行數:3,代碼來源:candidate-detail.component.ts

示例5: onPhoneToCandidate

 onPhoneToCandidate(): void {
     this.store.dispatch(new PhoneToOpenedAction('candidate'));
 }
開發者ID:alv-ch,項目名稱:job-room,代碼行數:3,代碼來源:candidate-detail.component.ts

示例6: onStartCritique

 onStartCritique(assignment:Assignment) {
   this.store.dispatch(startCritque(assignment));
 }
開發者ID:danielrose28,項目名稱:elmsln,代碼行數:3,代碼來源:assignment.component.ts

示例7: onSendLink

 onSendLink(): void {
     this.store.dispatch(new MailToOpenedAction('sendLink'));
 }
開發者ID:alv-ch,項目名稱:job-room,代碼行數:3,代碼來源:candidate-detail.component.ts

示例8: removeOne

 removeOne(product){
     this.store.dispatch({type:REMOVE_PRODUCT,payload:product});
 }
開發者ID:andbet39,項目名稱:ng2question,代碼行數:3,代碼來源:cart.component.ts

示例9: clear

 clear(product){
     this.store.dispatch({type:CLEAR_PRODUCT,payload:product});
 }
開發者ID:andbet39,項目名稱:ng2question,代碼行數:3,代碼來源:cart.component.ts

示例10: addTodo

 addTodo(el){
   let text = el.value;
   this.store.dispatch({type: 'ADD_TODO', payload: {text}});
   el.value = ""
 }
開發者ID:HansS,項目名稱:fluent_demos-reactive-angular2-rob-wormald,代碼行數:5,代碼來源:todoapp.ts


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