溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

nodejs發(fā)送http請求時遇到404長時間未響應(yīng)怎么辦

發(fā)布時間:2021-07-21 09:11:22 來源:億速云 閱讀:119 作者:小新 欄目:web開發(fā)

這篇文章給大家分享的是有關(guān)nodejs發(fā)送http請求時遇到404長時間未響應(yīng)怎么辦的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

通常,我們在使用nodejs發(fā)送http請求時,一旦遇到404響應(yīng),nodejs內(nèi)部會一直請求下去,直到超出它自己設(shè)定的響應(yīng)時長(最讓人惡心的地方就是這個時長還是沒法修改的。)很多人在這里碰到了麻煩。

我是在做arcgis地圖項(xiàng)目的時候,客戶提出需要使用天地圖提供的底圖服務(wù),當(dāng)時我直接使用silverlight客戶端的Arcgis API進(jìn)行http請求(同樣是內(nèi)部請求,不開源的東西就是這么讓人郁悶),同樣碰到了一個進(jìn)度條一直卡在那的問題。經(jīng)過調(diào)試發(fā)現(xiàn),是由于底圖加載請求超時的緣故,和nodejs一樣,silverlight一直在進(jìn)行請求直到超出它自己設(shè)定的響應(yīng)時限。

于是,我當(dāng)時正好有業(yè)余接觸nodejs,覺得這個東西性能應(yīng)該是不錯的,至少比tomcat+java之流要好一些。于是,我著手寫了一個nodejs的代理服務(wù),用來請求天地圖的底圖。我當(dāng)時以為nodejs碰到404時能直接結(jié)束請求,但是呢,這個問題好像是行業(yè)規(guī)范似的,它竟然也和silverlight一樣不斷的請求……索性上網(wǎng)查了會資料,得出了以下這兩段代碼,解決了這個一直請求404的問題。

function proxyTDTMapData(img,level,row,col){ 
  var that = this,request = null,param = img.replace('_w',''); 
  var filename = tdtimgDir+'/'+img+'_'+level+'_'+row+'_'+col+'.png'; 
  path.exists(filename, function(exists) { 
    if (exists) { 
      readFileEntry(filename,that.res); 
    }else{ 
      var url = "http://t0.tianditu.com/"+img+"/wmts?service=wmts&request=GetTile&version=1.0.0&LAYER=" + param + "&tileMatrixSet=w&TileRow=" + row + "&TileCol=" + col + "&TileMatrix=" + level + "&style=default&format=tiles"; 
       
      httpGetWithTimeoutSupport(url,4000,function(response){ 
        //console.log("have a response!"); 
        if(200 == response.statusCode){ 
          var size = 0; 
          var chunks = []; 
          response.on('data', function(chunk){ 
            size += chunk.length; 
            chunks.push(chunk); 
          }); 
          response.on('end', function(){ 
            var data = Buffer.concat(chunks, size); 
            that.res.writeHead(200, { 
              'Content-Type' : 'image/png', 
              'Content-Length' : data.length, 
              'Accept-Ranges' : 'bytes', 
              'Server' : 'Microsoft-IIS/7.5', 
              'X-Powered-By' : 'ASP.NET' 
            }); 
            that.res.write(data, "binary"); 
            that.res.end(); 
            fs.writeFile(tdtimgDir+'/'+img+'_'+level+'_'+row+'_'+col+'.png', data); 
           }); 
        }else{ 
          readFileEntry(mapDir+"/null.png",that.res); 
        } 
      }).on("error",function(){ 
        readFileEntry(mapDir+"/null.png",that.res); 
      }); 
    } 
  }); 
   
   
 }
function httpGetWithTimeoutSupport(options, timeout, callback) { 
  var timeoutEvent; 
 
  var req = http.get(options, function(res) { 
    res.on("end", function() { 
      clearTimeout(timeoutEvent); 
      // console.log("end"); 
    }) 
    res.on("close", function(e) { 
      clearTimeout(timeoutEvent); 
      // console.log("close"); 
    }) 
 
    res.on("abort", function() { 
      // console.log("abort"); 
    }); 
 
    res.on("error",function(){ 
      try{ 
        res.destory(); 
        clearTimeout(timeoutEvent); 
        //console.log("res error catch"); 
      }catch(e){ 
       
      } 
    }); 
    callback(res); 
  }); 
 
  req.on("timeout", function() { 
    //console.log("request emit timeout received"); 
    try{ 
      if (req.res) { 
        req.res.emit("abort"); 
      } 
      clearTimeout(timeoutEvent); 
      req.abort(); 
    }catch(e){ 
      //console.log("req timeout failed!"); 
    } 
  }); 
  req.on("error",function(){ 
    try{ 
      //console.log("req error catch"); 
    }catch(e){ 
     
    } 
  }); 
  timeoutEvent = setTimeout(function() { 
    try{ 
      req.emit("timeout"); 
    }catch(e){ 
      //console.log("timeout failed!"); 
    } 
  }, timeout); 
 
  return req; 
}

其原理就是利用nodejs請求的幾個事件與計(jì)時器,一旦超出設(shè)定的響應(yīng)時長則立馬終結(jié)請求。如此,進(jìn)度條一直卡著的問題解決了。
細(xì)心的讀者可能看到了

path.exists(filename, function(exists) { 
    if (exists) { 
      readFileEntry(filename,that.res); 
    }else{...});

這段代碼,其實(shí)這里做了一下服務(wù)端的圖片緩存,一旦加載過的底圖圖片,直接從本地讀取,極大的加快了地圖的訪問速度(這個在效率上提升了至少10倍)。
至于Arcgis API for Silverlight 是如何實(shí)現(xiàn)天地圖底圖以及其它底圖服務(wù)(比如非標(biāo)準(zhǔn)墨卡托的地方坐標(biāo)系底圖服務(wù))加載的呢?請聽我下回分解。

感謝各位的閱讀!關(guān)于“nodejs發(fā)送http請求時遇到404長時間未響應(yīng)怎么辦”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI