本文整理匯總了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';
}
});