Serialize forms fields into a JSON representation.
This project is a fork of Backbone.Syphon that has no dependency on backbone and jquery. It aims to make it easy to serialize the fields of a form into a simple JSON object.
npm install dom-form-serializer
var serialize = require('dom-form-serializer').serialize
serialize(document.querySelector('#form'))
The default behavior for serializing fields is to use the field's "name" attribute as the key in the serialized object.
<form id="form">
<input name="a">
<select name="b"></select>
<textarea name="c"></textarea>
</form>
serialize(document.querySelector('#form'))
// will produce =>
{
a: "",
b: "",
c: ""
}
By default, a checkbox will return a boolean value signifying whether or not it is checked.
<form id="form">
<input type="checkbox" name="a">
<input type="checkbox" name="b" checked>
<input type="checkbox" name="c" indeterminate>
</form>
serialize(document.querySelector('#form'));
// will produce =>
{
a: false,
b: true,
c: null
}
Radio button groups (grouped by the input element "name" attribute) will produce a single value, from the selected radio button.
<form id="form">
<input type="radio" name="a" value="1">
<input type="radio" name="a" value="2" checked>
<input type="radio" name="a" value="3">
<input type="radio" name="a" value="4">
</form>
serialize(document.querySelector('#form'))
// will produce =>
{
a: "2"
}
This behavior can be changed by registering a different set of Key Extractors, Input Readers, and Key Assignment Validators. See the tests serialize.spec.js for more examples on these.
Serializing drop down lists (<select>
) will result in value of the selected option.
<form id="form">
<select name="foo">
<option value="bar"></option>
</select>
</form>
serialize(document.querySelector('#form'))
// will produce =>
{
foo: "bar"
}
Serializing multiple select boxes (<select multiple>
) will yield the selected options as an array.
<form id="form">
<select name="foo" multiple>
<option value="foo"></option>
<option value="bar" selected></option>
<option value="baz" selected></option>
</select>
</form>
serialize(document.querySelector('#form'))
// will produce =>
{
foo: ["bar", "baz"]
}
You can also deserialize an object's values back into their field equivalent. It uses the same conventions and configuration as the serialization process, with the introduction of Input Writers to handle populating the fields with the values
<form id="form">
<input type="text" name="a">
<input type="text" name="b">
</form>
var data = {
a: "foo",
b: "bar"
};
deserialize(document.querySelector('#form'), data);
This will populate the form field elements with the correct values from the data
parameter.
The following types of input are ignored, and not included in the resulting JavaScript object:
<input type="submit">
buttons<input type="reset"
> buttons<button>
tagsIf you need to get a value from the specific button that was clicked, you can use a DOM event to listen for that element being manipulated (clicked, for example) and manually grab the data you need.
You can define ignored selectors using the ignoredTypes option.
// ignore all <textarea> input elements
serialize(element, {ignoredTypes: ['textarea']})
serialize
will parse nested attribute names and create a nested result object, using the Rails standard of name="foo[bar][baz]"
by default.
<form>
<input type="text" name="foo[bar]" value="a value">
<input type="text" name="foo[baz][quux]" value="another value">
</form>
will produce
{
foo: {
bar: "a value",
baz: {
quux: "another value"
}
}
}
serialize
will parse multiple inputs named after the convention name="foo[bar][]"
into elements of the array bar
.
<form>
<input type="checkbox" name="foo[bar][]" value="baz" checked="checked">
<input type="checkbox" name="foo[bar][]" value="qux" checked="checked">
</form>
will produce
{
foo: {
bar: ["baz", "qux"]
}
}
If your keys are split by something else than the Rails Array convention (for example name="foo.bar.quux"
), you may pass this delimiter into serialize
using the keySplitter
option.
<form id="form">
<input type="text" name="widget" value="wombat">
<input type="text" name="foo.bar" value="baz">
<input type="text" name="foo.baz.quux" value="qux">
</form>
serialize(document.querySelector('#form'), { keySplitter: key => key.split('.') })
// will produce =>
{
widget: "wombat",
foo: {
bar: "baz",
baz: {
quux: "qux"
}
}
}