Files
30-seconds-of-code/snippets/js/s/http-delete.md
2023-05-07 16:07:29 +03:00

898 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
HTTP delete snippet javascript
browser
beach-from-above 2020-10-19T22:49:51+03:00

Makes a DELETE request to the passed URL.

  • Use the XMLHttpRequest web API to make a DELETE request to the given url.
  • Handle the onload event, by running the provided callback function.
  • Handle the onerror event, by running the provided err function.
  • Omit the third argument, err to log the request to the console's error stream by default.
const httpDelete = (url, callback, err = console.error) => {
  const request = new XMLHttpRequest();
  request.open('DELETE', url, true);
  request.onload = () => callback(request);
  request.onerror = () => err(request);
  request.send();
};
httpDelete('https://jsonplaceholder.typicode.com/posts/1', request => {
  console.log(request.responseText);
}); // Logs: {}