第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何從前端訪(fǎng)問(wèn)狀態(tài)碼

如何從前端訪(fǎng)問(wèn)狀態(tài)碼

江戶(hù)川亂折騰 2022-11-03 15:13:43
router.post("/login", async (req, res) => {    try    {        const user = await User.findByCredentials(req.body.email, req.body.password, req.body.email)        console.log(user)        if(user === undefined)        {            return res.sendStatus(404)        }        const token = await user.generateAuthToken()        console.log(token)    }    catch(e)    {        console.log(e)       }})我正在從我的后端發(fā)送狀態(tài)碼 404。但問(wèn)題是我不能在我的前端 js 中使用這個(gè)狀態(tài)碼。const xhr = new XMLHttpRequest();let form = JSON.stringify({email: $uyeolFormEmail.value,password: $uyeolFormPassword.value});xhr.open("POST", "/login")xhr.setRequestHeader('Content-type', 'application/json')xhr.send(form)console.log(xhr.status)if(xhr.status === 200 || xhr.status === 201){    window.location.href="/takvim"}else if(xhr.status > 299){    window.location.href="/"}我試過(guò) xhr.status 但沒(méi)有用。有什么建議嗎?
查看完整描述

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)


查看完整回答
反對(duì) 回復(fù) 2022-11-03
  • 1 回答
  • 0 關(guān)注
  • 189 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)