remote form
v0.4.3
Una función que permitirá enviar formularios a través de AJAX.
La función realizará una solicitud basada en el formulario usando window.fetch
con la carga útil codificada como parámetros de URL si el método del formulario es GET
y FormData
para todos los demás métodos.
El objeto de solicitud está disponible en la función de devolución de llamada, lo que permite modificar los encabezados y el cuerpo antes de enviar la solicitud.
$ npm install --save @github/remote-form
import { remoteForm } from '@github/remote-form'
// Make all forms that have the `data-remote` attribute a remote form.
remoteForm ( 'form[data-remote]' , async function ( form , wants , request ) {
// Before we start the request
form . classList . remove ( 'has-error' )
form . classList . add ( 'is-loading' )
let response
try {
response = await wants . html ( )
} catch ( error ) {
// If the request errored, we'll set the error state and return.
form . classList . remove ( 'is-loading' )
form . classList . add ( 'has-error' )
return
}
// If the request succeeded we can do something with the results.
form . classList . remove ( 'is-loading' )
form . querySelector ( '.results' ) . innerHTML = response . html
} )
< form action =" /signup " method =" post " data-remote >
< label for =" username " > Username </ label >
< input id =" username " type =" text " >
< label for =" password " > Username </ label >
< input id =" password " type =" password " >
< button type =" submit " > Log in </ button >
< div class =" results " > </ div >
</ form >
Los navegadores sin soporte nativo para elementos personalizados requieren un polyfill.
npm install
npm test
Distribuido bajo licencia MIT. Consulte LICENCIA para obtener más detalles.