fetch в статусе возвращает 0
Почему fetch возвращает 0. Задача: обработать статус ответа от сервера.
function beginAuth(data) {
fetch("/login", {
method: "POST",
body: data,
redirect: "manual"
}).then(response => {
alert(response.status);
// window.location.replace("/index")
});
}
