form-serialize-all

1.0.1 • Public • Published

codecov Build Status

Index

Installation

yarn

yarn add form-serialize-all

npm

npm install --save form-serialize-all

Usage

<form action="" class="example-form">
  <input type="text" value="My awesome name" name="name" />
  <input type="text" value="My awesome surname" name="surname" />
  <input type="checkbox" value="I am the most modest person in the world" name="modest" checked="" />
</form>
import SerializeForm from 'form-serialize-all';
 
const myFormElement = document.querySelector('.example-form');
const seralize = new SerializeForm(myFormElement);
 
console.log(seralize.toArray()); // [{name:'My awesome name'}, {surname:'My awesome surname'}, {modest:'I am the most modest person in the world'}]
console.log(seralize.toObject()); //{name:'My awesome name', surname:'My awesome surname', modest:'I am the most modest person in the world'}
console.log(seralize.toString()); // 'name=My awesome name&surname=My awesome surname&modest=I am the most modest person in the world'

Readme

Keywords

none

Package Sidebar

Install

npm i form-serialize-all

Weekly Downloads

27

Version

1.0.1

License

APACHE 2.0

Unpacked Size

310 kB

Total Files

21

Last publish

Collaborators

  • felice.c