当前位置: 首页>>代码示例>>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;未经允许,请勿转载。