1_gqHgCNubMncv7EwWNdArGQ

How do I make an HTTP request in JavaScript with code example?

HTTP Request:

To make an HTTP request in JavaScript, you can use the built-in XMLHttpRequest object or the newer fetch API. Here’s an example of how to make a GET request using fetch:

 

				
					const xhr = new XMLHttpRequest();
xhr.open('GET', 'https://example.com/data');
xhr.onload = function() {
  if (xhr.status === 200) {
    // Request was successful
    console.log(xhr.responseText);
  } else {
    // Request failed
    console.error('Request failed.  Returned status of ' + xhr.status);
  }
};
xhr.send();

				
			

 

GET Request:

This code sends a GET request to https://example.com/data using the XMLHttpRequest object. The open method specifies the request method and URL, and the onload method is called when the request completes. If the request was successful (status code 200), the response text is logged to the console. If the request failed, an error message is logged.

POST Request with a JSON Payload:

You can also make more complex requests using the XMLHttpRequest object. Here’s an example of how to make a POST request with a JSON payload:

 

				
					const xhr = new XMLHttpRequest();
xhr.open('POST', 'https://example.com/login');
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.onload = function() {
  if (xhr.status === 200) {
    // Request was successful
    console.log(xhr.responseText);
  } else {
    // Request failed
    console.error('Request failed.  Returned status of ' + xhr.status);
  }
};
const data = JSON.stringify({ username: 'john.doe', password: '123456' });
xhr.send(data);

				
			

This code sends a POST request to https://example.com/login with a JSON payload containing a username and password. The setRequestHeader method is used to set the Content-Type header to application/json.

There are several popular ways to make an HTTP request in JavaScript. Here are some of the most common ones:

XMLHttpRequest (XHR) object:

This is a built-in object in JavaScript that enables asynchronous communication between a web browser and a server. It has been around for a long time and is still widely used today. Here’s an example:

 

				
					const xhr = new XMLHttpRequest();
xhr.open('GET', 'https://example.com/data');
xhr.onload = function() {
  if (xhr.status === 200) {
    console.log(xhr.responseText);
  } else {
    console.error('Request failed.  Returned status of ' + xhr.status);
  }
};
xhr.send();

				
			

 

Fetch API:

This is a newer and more modern way to make HTTP requests in JavaScript. It returns a Promise, which makes it easier to work with. Here’s an example:

 

				
					fetch('https://example.com/data')
  .then(response => response.json())
  .then(data => {
    console.log(data);
  })
  .catch(error => {
    console.error(error);
  });

				
			

 

Axios library:

Axios is a popular third-party library for making HTTP requests in JavaScript. It is very easy to use and provides features like request and response interceptors, automatic JSON parsing, and more. Here’s an example:

 

				
					axios.get('https://example.com/data')
  .then(response => {
    console.log(response.data);
  })
  .catch(error => {
    console.error(error);
  });

				
			

 

jQuery’s $.ajax() method:

jQuery is a popular JavaScript library that provides a lot of utility functions and plugins. One of its features is the ability to make HTTP requests using the $.ajax() method. It works similarly to the XMLHttpRequest object, but with a simpler syntax. Here’s an example:

 

				
					$.ajax({
  url: 'https://example.com/data',
  method: 'GET',
  success: function(data) {
    console.log(data);
  },
  error: function(xhr, status, error) {
    console.error(error);
  }
});

				
			

 

SuperAgent:

SuperAgent is a lightweight HTTP request library for Node.js and the browser. It provides a simple and elegant API for making HTTP requests, and supports features like request and response headers, cookies, and more. Here’s an example:

 

				
					superagent.get('https://example.com/data')
  .then(response => {
    console.log(response.body);
  })
  .catch(error => {
    console.error(error);
  });

				
			

 

Node-Fetch:

node-fetch is a lightweight library for making HTTP requests in Node.js. It provides a simple and easy-to-use API that is similar to the fetch API in the browser. Here’s an example:

 

				
					fetch('https://example.com/data')
  .then(response => response.json())
  .then(data => {
    console.log(data);
  })
  .catch(error => {
    console.error(error);
  });

				
			

Add a Comment

Your email address will not be published. Required fields are marked *