Level 73
You cannot return a redirect if you are using fetch on the client side. You should handle the redirect on the client side as well. So
fetch(
//do the post here
).then(function() {
// handle your redirect here, if it was successful.
});
1 like