本文整理汇总了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, "");
}
示例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();
}
示例3: execute
async execute(event: GetShopItemsEvent) : Promise<void> {
FabaRuntimeWeb.sendToEndpoint(event, "");
}
示例4: execute
execute(event: GetDashboardDataEvent) {
FabaRuntimeWeb.sendToEndpoint(event, "");
}
示例5: execute
execute(event:InsertDashboardDataCommand) {
FabaRuntimeWeb.sendToEndpoint(event, "");
}
示例6: execute
async execute(event: ForgotPassEvent) {
if (event.username) {
this.store.data.account.forgotPass.showSuccessMessage = true;
FabaRuntimeWeb.sendToEndpoint(event, "");
}
}
示例7: execute
execute(event: BuyShopItemEvent): any {
// Show PopUp // Modal
FabaRuntimeWeb.sendToEndpoint(event, "");
}
示例8: execute
async execute(event: GetCourseDataEvent) {
FabaRuntimeWeb.sendToEndpoint(event, "");
}