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

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

防止使用 fetch 發(fā)送多個(gè) http 請(qǐng)求

防止使用 fetch 發(fā)送多個(gè) http 請(qǐng)求

呼如林 2023-11-02 21:16:52
我正在創(chuàng)建一個(gè) chrome 擴(kuò)展,在其中我使用提示獲取輸入并使用 HTTP 請(qǐng)求將其發(fā)送到服務(wù)器。通過(guò)這樣做,我面臨著數(shù)據(jù)重復(fù),這意味著擴(kuò)展程序正在向服務(wù)器發(fā)送多個(gè)請(qǐng)求,這是我想阻止的。(注意:僅在發(fā)送相同數(shù)據(jù)的多個(gè)請(qǐng)求時(shí)才從提示中獲取數(shù)據(jù))示例代碼:前端:var data = prompt("Enter your data here");if (data !== null || data !== ''){fetch('http://localhost:3000/post', {  method: 'POST',  body: JSON.stringify({    data: data  }),  headers: {    'Content-Type': 'application/json',  }}).then((res) => {  console.log("wait for whole req");  return res.json();}).then((resData) => {  console.log(resData);  console.log("req send successfully");  // note = null;}).catch((error) => {  // note = null;  console.log(error.message);  // alert(error.message);});后端:app.post("/post", function(req, res) {    const data = req.body.data;    dataList.push(data);    res.status(200).json({       status: "uploaded"    });});這里,data 是一個(gè)數(shù)組,存儲(chǔ)從用戶處獲取的數(shù)據(jù)。
查看完整描述

1 回答

?
婷婷同學(xué)_

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

您可以通過(guò)標(biāo)志限制并發(fā)請(qǐng)求


var data = null, 

isLoading = false, // perhaps you need to make this persistent depending on your overall architecture

if (!isLoading) 

{

   data = prompt("Enter your data here");

}

if (data !== null || data !== ''){

isLoading = true;

fetch('http://localhost:3000/post', {

  method: 'POST',

  body: JSON.stringify({

    data: data

  }),

  headers: {

    'Content-Type': 'application/json',

  }

}).then((res) => {

  console.log("wait for whole req");

  

  return res.json();

}).then((resData) => {

  console.log(resData);

  console.log("req send successfully");

  isLoading = false

  // note = null;

}).catch((error) => {

  // note = null;

  console.log(error.message);

  isLoading = false

  // alert(error.message);

});


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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