Answers for "redirect to website from promise value fetch"

0

redirect to website from promise value fetch

fetch("http://example.com/", {
	method: 'POST',
	mode: 'cors',
	body: formData
})
.then(dataWrappedByPromise => dataWrappedByPromise.text())
.then(data => {
	//Redirect is the URL inside the text of the response promise
	window.location.replace(data);
})
Posted by: Guest on May-14-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language