How to POST Data from an HTML Form to an API URL Using JavaScript
Learn how to send data from an HTML form to an API URL using JavaScript with the POST method. Includes detailed code and explanation on how to use Fetch API to handle form data and send POST requests.
Here is the JavaScript code to send data from an HTML form to an API URL using the POST method:
<form id="myForm">
<input type="text" name="username" placeholder="Enter your username" required />
<input type="email" name="email" placeholder="Enter your email" required />
<button type="submit">Submit</button>
</form>
document.getElementById('myForm').addEventListener('submit', async function (event) {
event.preventDefault(); // Prevent default form submission
const formData = new FormData(this); // Collect data from the form
const data = Object.fromEntries(formData); // Convert form data to a JSON object
try {
const response = await fetch('https://api.example.com/submit', {
method: 'POST', // Use POST method
headers: {
'Content-Type': 'application/json' // Content type sent is JSON
},
body: JSON.stringify(data) // Convert data to JSON and send
});
if (response.ok) {
const result = await response.json(); // Process the API response
console.log('Success:', result); // Handle success
} else {
console.error('Error:', response.statusText); // Handle errors
}
} catch (error) {
console.error('Fetch error:', error); // Handle connection errors
}
});
Explanation of Each Line of Code:
-
HTML Form:
form id="myForm"
: Defines a form with an id ofmyForm
.<input>
: Input fields where users can enter data.<button>
: Button to submit the form.
-
document.getElementById('myForm').addEventListener('submit', ...)
- Listens for the form submit event.
-
event.preventDefault();
- Prevents the default browser action of submitting the form, so we can handle it with JavaScript.
-
const formData = new FormData(this);
- Creates a
FormData
object from the form, containing all input data.
- Creates a
-
const data = Object.fromEntries(formData);
- Converts the form data from
FormData
format to a JSON object for sending to the API.
- Converts the form data from
-
const response = await fetch('https://api.example.com/submit', { ... });
- Uses
fetch
to make a POST request to the API URL.
- Uses
-
method: 'POST'
- Specifies that the HTTP method is
POST
to send data.
- Specifies that the HTTP method is
-
headers: { 'Content-Type': 'application/json' }
- Sets the request header to specify that the content type being sent is JSON.
-
body: JSON.stringify(data)
- Converts the data object into a JSON string and sends it in the request body.
-
if (response.ok)
- Checks if the response was successful (status in the 2xx range).
-
const result = await response.json();
- Converts the API response to JSON format.
-
console.log('Success:', result);
- Logs the success result to the console.
-
console.error('Error:', response.statusText);
- Logs any errors if the request was unsuccessful.
-
catch (error)
- Handles connection errors or any exceptions that occur.
JavaScript Version:
The provided code is compatible with modern browsers that support ES8 (ECMAScript 2017) and later versions. Ensure your browser supports async/await