1 回答

TA貢獻(xiàn)1820條經(jīng)驗(yàn) 獲得超10個(gè)贊
使用 XMLHttpRequest 對(duì)象,您可以定義在請(qǐng)求收到答案時(shí)要執(zhí)行的函數(shù)。
該函數(shù)在 XMLHttpResponse 對(duì)象的 onreadystatechange 屬性中定義:
const xhr = new XMLHttpRequest();
let form = JSON.stringify({
email: $uyeolFormEmail.value,
password: $uyeolFormPassword.value
});
xhr.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
window.location.href="/takvim"
}
else if(this.status > 299)
{
window.location.href="/"
}
};
xhr.open("POST", "/login")
xhr.setRequestHeader('Content-type', 'application/json')
xhr.send(form)
添加回答
舉報(bào)