Files
30-seconds-of-code/snippets/httpDelete.md
Isabelle Viktoria Maciohsek 821f442bec Remove url tag
2020-10-18 14:19:29 +03:00

808 B

title, tags
title tags
httpDelete browser,intermediate

Makes a DELETE request to the passed URL.

  • Use 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: {}
*/