本文整理汇总了TypeScript中@servicestack/client.bootstrapForm函数的典型用法代码示例。如果您正苦于以下问题:TypeScript bootstrapForm函数的具体用法?TypeScript bootstrapForm怎么用?TypeScript bootstrapForm使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了bootstrapForm函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: bootstrapForm
import { bootstrapForm } from "@servicestack/client";
declare var CONTACT:any;
const form = document.querySelector("form")!;
bootstrapForm(form,{
model: CONTACT,
success: function () {
location.href = '/validation/client-ts/contacts/';
}
});
示例2: JsonServiceClient
import { bootstrapForm, bindHandlers, JsonServiceClient } from "@servicestack/client";
import {Contact, DeleteContact, GetContact, GetContacts} from "../../../dtos";
declare var CONTACTS:Contact[];
const client = new JsonServiceClient();
const form = document.querySelector("form")!;
bootstrapForm(form,{
success: function (r:{result:Contact}) {
form.reset();
CONTACTS.push(r.result);
render();
}
});
bindHandlers({
deleteContact: async function(id:number) {
if (!confirm('Are you sure?'))
return;
await client.delete(new DeleteContact({ id }));
const response = await client.get(new GetContacts());
CONTACTS = response.results;
render();
}
});
const contactRow = (contact:Contact) =>
`<tr style="background:${contact.color}">
<td>${contact.title} ${contact.name} (${contact.age})</td>
<td><a href="/validation/client-ts/contacts/${contact.id}/edit">edit</a></td>
示例3: bootstrapForm
import {bindHandlers, bootstrapForm, splitOnFirst, toPascalCase} from "@servicestack/client";
import {AuthenticateResponse} from "../../dtos";
bootstrapForm(document.querySelector('form'), {
success: (r:AuthenticateResponse) => {
location.href = '/validation/client-ts/';
}
});
bindHandlers({
newUser: (u: string) => {
const $ = (sel:string) => document.querySelector(sel) as HTMLInputElement;
const names = u.split('@');
$("[name=displayName]").value = toPascalCase(names[0]) + " " + toPascalCase(splitOnFirst(names[1],'.')[0]);
$("[name=email]").value = u;
$("[name=password]").value = $("[name=confirmPassword]").value = 'p@55wOrd';
}
});
示例4: bootstrapForm
import { bindHandlers, bootstrapForm } from "@servicestack/client";
import {AuthenticateResponse} from "../../dtos";
declare var CONTINUE:string;
bootstrapForm(document.querySelector('form'), {
success: (r: AuthenticateResponse) => {
location.href = CONTINUE;
}
});
bindHandlers({
switchUser: (u: string) => {
(document.querySelector("[name=userName]") as HTMLInputElement).value = u;
(document.querySelector("[name=password]") as HTMLInputElement).value = 'p@55wOrd';
}
});