簡體   English   中英

Node.js-發送標頭后無法發送標頭

[英]Node.js - Can't send headers after they are sent

我發現最接近的問題在這里 我相信從我的.end()調用設置過程中會收到此錯誤。 這是我們正在使用的代碼:

app.get('/anihome',function(req,res){

var context = {};

function renderPage(context) {
    res.render('anihome',context);
}

function addRequestToPage(text) {
    context.data = text.toString('utf8');
    context.info = JSON.parse(text);
    return context;
}

function addAnimeToPage(text) {
    context.anime = JSON.parse(text);
    return context;
}

function addAnimeRequest(context) {
   var options2 = {
    host: 'anilist.co',
    path: '/api/anime/20631?access_token=' + context.info.access_token,
    method: 'GET'
    };

    https.request(options2, function(restRes) {
        restRes.on('data',function(jsonResult) {
            //context.anime = JSON.parse(jsonResult);
            //console.log(JSON.parse(jsonResult));
            console.log(context);
            renderPage(context);
        });
    }).end();
}
function addHeaderRequest(context) {
    var options = {
    host: 'anilist.co',
    path: '/api/auth/access_token?grant_type=client_credentials&client_id='
    + clientID + '&client_secret=' + secretKey,
    method: 'POST'
    };     

    https.request(options, function(restRes) {
        restRes.on('data', function(jsonResult) {
            context = addRequestToPage(jsonResult);
            addAnimeRequest(context);
        });
    }).end();
}
addHeaderRequest(context);
});

我試圖用回調.end(addAnimeRequest(context));設置一個.end() .end(addAnimeRequest(context)); ,這使我出現套接字掛起錯誤,因此,我的addAnimeRequest函數中的某些內容可能花費了太長時間?

有沒有更好的方法可以使用不同的選項向同一網站發出多個請求? 我對Node.js很陌生。

data事件可以發出多次。 您將需要為end事件添加一個偵聽器,然后傳遞所有數據。 例:

https.request(options2, function(restRes) {
    var buf = ''
    restRes.on('data',function(jsonResult) {
        //context.anime = JSON.parse(jsonResult);
        //console.log(JSON.parse(jsonResult));
        buf += jsonResult
    });
    restRes.on('end', function() {
      // TODO JSON.parse can throw
      var context = JSON.parse(buf)
      renderPage(context)
    })
}).end();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM