Example showcasing usage of x-www-form-urlencoded in Jaguar.
pub serve --port 8000
dart bin/server.dart
Open http://localhost:8005 in a browser of your choice.
This example implements a "contacts list" web app to demonstrate how to use x-www-form-urlencoded in Jaguar.
The interface to add a new contact is built using HTML forms. This form is sent as x-www-form-urlencoded by the browser.
The server uses bodyAsUrlEncodedForm
to decode the form.