You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
function serializeForm(id: string): Object {
|
|
|
|
const form = document.getElementById(id) as HTMLFormElement;
|
|
|
|
let formData = {};
|
|
|
|
for (let i = 0; i < form.elements.length; i++) {
|
|
|
|
const el = form.elements[i];
|
|
|
|
if ((el as HTMLInputElement).type == "submit") {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let name = (el as HTMLInputElement).name;
|
|
|
|
if (!name) {
|
|
|
|
name = el.id;
|
|
|
|
}
|
|
|
|
switch ((el as HTMLInputElement).type) {
|
|
|
|
case "checkbox":
|
|
|
|
formData[name] = (el as HTMLInputElement).checked;
|
|
|
|
break;
|
|
|
|
case "text":
|
|
|
|
case "password":
|
|
|
|
case "email":
|
|
|
|
case "number":
|
|
|
|
formData[name] = (el as HTMLInputElement).value;
|
|
|
|
break;
|
|
|
|
case "select-one":
|
|
|
|
case "select":
|
|
|
|
let val: string = (el as HTMLSelectElement).value.toString();
|
|
|
|
if (!isNaN(val as any)) {
|
|
|
|
formData[name] = +val;
|
|
|
|
} else {
|
|
|
|
formData[name] = val;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return formData;
|
|
|
|
}
|