当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript FabaRuntimeWeb.sendToEndpoint函数代码示例

本文整理汇总了TypeScript中@fabalous/runtime-web/FabaRuntimeWeb.sendToEndpoint函数的典型用法代码示例。如果您正苦于以下问题:TypeScript sendToEndpoint函数的具体用法?TypeScript sendToEndpoint怎么用?TypeScript sendToEndpoint使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了sendToEndpoint函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: execute

    async execute(event: SignUpEvent) : Promise<void> {
        if (!event.checkUserData()) {
            this.store.set("account.signUp.errorCode", 0);
            return;
        }

        FabaRuntimeWeb.sendToEndpoint(event, "");
    }
开发者ID:joergwasmeier,项目名称:lingua,代码行数:8,代码来源:SignUpCommand.ts

示例2: execute

    async execute(event: LoginEvent) : Promise<void> {
        new AccountUiEvent(AccountUiEventType.SHOW_LOGIN_PROGRESS).dispatch();

        if (event.checkUserPassLength()) {
            FabaRuntimeWeb.sendToEndpoint(event, "");
            return;
        }

        new AccountUiEvent(AccountUiEventType.SHOW_LOGIN_ERROR).dispatch();
    }
开发者ID:joergwasmeier,项目名称:lingua,代码行数:10,代码来源:LoginCommand.ts

示例3: execute

 async execute(event: GetShopItemsEvent) : Promise<void> {
     FabaRuntimeWeb.sendToEndpoint(event, "");
 }
开发者ID:joergwasmeier,项目名称:lingua,代码行数:3,代码来源:GetShopItemsCommand.ts

示例4: execute

 execute(event: GetDashboardDataEvent) {
     FabaRuntimeWeb.sendToEndpoint(event, "");
 }
开发者ID:joergwasmeier,项目名称:lingua,代码行数:3,代码来源:GetDashboardDataCommand.ts

示例5: execute

 execute(event:InsertDashboardDataCommand) {
   FabaRuntimeWeb.sendToEndpoint(event, "");
 }
开发者ID:joergwasmeier,项目名称:lingua,代码行数:3,代码来源:InsertDashboardDataCommand.ts

示例6: execute

  async execute(event: ForgotPassEvent) {
      if (event.username) {
          this.store.data.account.forgotPass.showSuccessMessage = true;
         FabaRuntimeWeb.sendToEndpoint(event, "");
     }
 }
开发者ID:joergwasmeier,项目名称:lingua,代码行数:6,代码来源:ForgotPassCommand.ts

示例7: execute

    execute(event: BuyShopItemEvent): any {
        // Show PopUp // Modal

        FabaRuntimeWeb.sendToEndpoint(event, "");
    }
开发者ID:joergwasmeier,项目名称:lingua,代码行数:5,代码来源:BuyShopItemCommand.ts

示例8: execute

 async execute(event: GetCourseDataEvent) {
     FabaRuntimeWeb.sendToEndpoint(event, "");
 }
开发者ID:joergwasmeier,项目名称:lingua,代码行数:3,代码来源:GetCourseDataCommand.ts


注:本文中的@fabalous/runtime-web/FabaRuntimeWeb.sendToEndpoint函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。