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


TypeScript MeteorObservable.call方法代碼示例

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


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

示例1: handleRemove

  private handleRemove(alert): void {
    MeteorObservable.call('removeChat', this.params.get('chat')._id).subscribe({
      next: () => {

       alert.dismiss().then(() => {
          this.navCtrl.setRoot(ChatsPage, {}, {
            animate: true
          });
        });
      },

     error: (e: Error) => {
        alert.dismiss().then(() => {
          if (e) {
            return this.handleError(e);
          }

          this.navCtrl.setRoot(ChatsPage, {}, {

           animate: true
          });
        });
      }
    });
  }
開發者ID:ShinFDuran,項目名稱:Pruebas,代碼行數:25,代碼來源:messages-options.ts

示例2: reply

 reply(rsvp: string) {
   MeteorObservable.call('reply', this.track._id, rsvp).subscribe(() => {
     alert('You successfully replied.');
   }, (error) => {
     alert(`Failed to reply due to ${error}`);
   });
 }
開發者ID:harishmaiya,項目名稱:gundmi48-gadikatte58,代碼行數:7,代碼來源:track-details.component.ts

示例3: invite

 invite(user: Meteor.User) {
   MeteorObservable.call('invite', this.track._id, user._id).subscribe(() => {
     alert('User successfully invited.');
   }, (error) => {
     alert(`Failed to invite due to ${error}`);
   });
 }
開發者ID:harishmaiya,項目名稱:gundmi48-gadikatte58,代碼行數:7,代碼來源:track-details.component.ts

示例4: done

 done(): void {
   MeteorObservable.call('updateProfile', this.profile).subscribe({
     next: () => {
       this.navCtrl.push(TabsPage);
     },
     error: (e: Error) => {
       this.handleError(e);
     }
   });
 }
開發者ID:pro-to-tip,項目名稱:pro-to-tip.github.io,代碼行數:10,代碼來源:profile.ts

示例5: addChat

 addChat(user): void {
   MeteorObservable.call('addChat', user._id).subscribe({
     next: () => {
       this.viewCtrl.dismiss();
     },
     error: (e: Error) => {
       this.viewCtrl.dismiss().then(() => {
         this.handleError(e)
       });
     }
   });
 }
開發者ID:pro-to-tip,項目名稱:pro-to-tip.github.io,代碼行數:12,代碼來源:new-chat.ts

示例6: comment

 comment(poemId, data) {
     return MeteorObservable.call('commentPoem', poemId, data);
 }
開發者ID:Puzochacha,項目名稱:rhy,代碼行數:3,代碼來源:poem.service.ts


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