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

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

res.end 不停止腳本執(zhí)行

res.end 不停止腳本執(zhí)行

侃侃爾雅 2022-10-13 15:52:55
我目前正在嘗試圍繞第 3 方 API 構(gòu)建 API,但是在我的 Express 路由中,我似乎無法讓當(dāng)前腳本停止執(zhí)行,這是我的代碼:app.get('/submit/:imei', async function (req, res) {    //configure    res.setHeader('Content-Type', 'application/json');    MyUserAgent = UserAgent.getRandom();    axios.defaults.withCredentials = true;    const model_info = await getModelInfo(req.params.imei).catch(function (error) {        if(error.response && error.response.status === 406) {            return res.send(JSON.stringify({                'success': false,                'reason': 'exceeded_daily_attempts'            }));        }    });    console.log('This still gets called even after 406 error!');});如果初始請(qǐng)求返回406錯(cuò)誤,如何停止執(zhí)行腳本?
查看完整描述

2 回答

?
慕的地6264312

TA貢獻(xiàn)1817條經(jīng)驗(yàn) 獲得超6個(gè)贊

如果您不想在捕獲錯(cuò)誤后執(zhí)行代碼,那么您應(yīng)該這樣做:


app.get('/submit/:imei', async function (req, res) {

    //configure

    res.setHeader('Content-Type', 'application/json');

    MyUserAgent = UserAgent.getRandom();

    axios.defaults.withCredentials = true;

    try {

        const model_info = await getModelInfo(req.params.imei);    

        console.log('This will not get called if there is an error in getModelInfo');

        res.send({ success: true });

    } catch(error) {

        if(error.response && error.response.status === 406) {

            return res.send({

                'success': false,

                'reason': 'exceeded_daily_attempts'

            });

        }

    }

});

或者,您可以在通話then后使用,只有在不拒絕getModelInfo時(shí)才會(huì)調(diào)用該代碼。getModelInfo


查看完整回答
反對(duì) 回復(fù) 2022-10-13
?
九州編程

TA貢獻(xiàn)1785條經(jīng)驗(yàn) 獲得超4個(gè)贊

它也應(yīng)該有一個(gè)成功塊。


app.get('/submit/:imei', async function (req, res) {

    //configure

    res.setHeader('Content-Type', 'application/json');

    MyUserAgent = UserAgent.getRandom();

    axios.defaults.withCredentials = true;


    const model_info = await getModelInfo(req.params.imei)

        .then(function (response) {

            return res.send(JSON.stringify({

                'success': true,

                'res': response

            }));


        })

        .catch(function (error) {

            if (error.response && error.response.status === 406) {

                return res.send(JSON.stringify({

                    'success': false,

                    'reason': 'exceeded_daily_attempts'

                }));

            }

        });


    //it will console log

    console.log('This still gets called even after 406 error!');

});


查看完整回答
反對(duì) 回復(fù) 2022-10-13
  • 2 回答
  • 0 關(guān)注
  • 100 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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