Я сделал серверную часть, но когда ответ в порядке, страница просто не меняется, и я не знаю, в чем проблема...
try{
const response = await fetch ("http://localhost:3000/registro",{
method: "POST",
headers:{
"Content-Type": "application/json",
},
body: JSON.stringify(dadosdoUsuario)
})
const dadosdaresposta = await response.json();
if (response.ok) {
alert(dadosdaresposta.message)
window.location.href= "../pgInicial/pgInicial.html" //This doesnt Work
}
else{
alert("Erro no cadastro " + `${dadosdaresposta.error}`)
return;
}
}
catch(erro){
console.log("Não foi possível")}
Подробнее здесь: https://stackoverflow.com/questions/798 ... ation-href