6

我有这个函数,下面传递给这个函数的数据返回一个 ECONNRESET,套接字挂起错误。但是,当 discountCode 数组减少到只有 10 个对象时,它可以毫无问题地 POST。

这个问题的原因可能是什么?我尝试通过对 Buffer 中的数据进行分段来执行多个 req.write(),但是效果不佳。任何 NodeJs 忍者都可以对这个问题提供一些见解吗?

createObj: function(data, address, port, callback) {

//console.log('Create Reward: '+JSON.stringify(data));
var post_data = JSON.stringify(data);

var pathName = '/me/api/v1/yyy/'+data.idBusinessClient+'/newObj';

    // 
    var options = {
        hostname: address,
        port: port,
        path: pathName,
        method: 'POST',
        headers: {
            'Content-Type': 'application/json; charset=utf-8',
            'Accept': 'application/json',
            'Accept-Encoding': 'gzip,deflate,sdch',
            'Accept-Language': 'en-US,en;q=0.8'
        }
    };

    // http call to REST API server
    var req = restHttp.request(options, function(res) {

        console.log('HTTP API server PUT Reward response received.');
        var resData = '';
        res.on('data', function(replyData) {

            // Check reply data for error.
            console.log(replyData.toString('utf8'));
            if(replyData !== 'undefined')
                resData += replyData;
        });

        res.on('end', function() {
            //<TODO>Process the data</TODO>             
            callback(JSON.parse(resData));
        });
    });

    req.write(post_data);
    req.end();

    console.log('write end');

    req.on('close', function() {
        console.log('connection closed!');
    });

    req.on('error', function(err) {
        console.log('http request error : '+err);
        callback({'error':err});
        throw err;
    });

    req.on('socket', function(socket) {
        console.log('socket size:'+socket.bufferSize);
        socket.on('data', function(data) {
            console.log('socket data:'+data);
        });
    });

}

]}`

4

3 回答 3

7

我遇到了同样的问题,并且能够通过添加 Content-Length 标头来解决它:

    headers: {
        'Content-Type': 'application/json; charset=utf-8',
        'Content-Length': Buffer.byteLength(post_data),
        'Accept': 'application/json',
        'Accept-Encoding': 'gzip,deflate,sdch',
        'Accept-Language': 'en-US,en;q=0.8'
    }

但是,我仍然不清楚为什么缺少 Content-Length 标头会导致这样的麻烦。我认为这是内部 Node.js 代码中的某种奇怪之处。也许您甚至可以称其为错误,但我不确定;)

PS:我绝对对有关此问题原因的更多信息感兴趣。因此,如果您有任何想法,请发表评论...

于 2014-01-10T12:00:41.407 回答
0

当您确定更改响应的内容时,您还需要在标题上更新内容长度:

headers: {
    ...
    'Content-Length': Buffer.byteLength(post_data),
    ...
}

但是当我尝试发出多个请求时,我也遇到了这个问题,并且似乎这在不同的库上没有得到很好的管理,所以如果这个问题仍然存在,我发现一个解决方法是添加标题:

headers: {
    ...
    connection: 'Close'
    ...
}

因此,如果您在不同的服务器上发出请求.. 在完成该过程后关闭连接。这在网络,node-http-proxy 中对我有用。

于 2017-06-28T09:06:36.177 回答
0

如果使用Expresshttp-proxy-middleware进行 POST 调用,并且使用了一些 body 解析器中间件,则必须使用express.json()请求拦截器(更多信息)。否则 POST 调用将因错误而挂起。fixRequestBodyECONNRESET

const express = require('express');
const { createProxyMiddleware, fixRequestBody } = require('http-proxy-middleware');

const app = express();
app.use(express.json());
app.post(
  '/path',
  createProxyMiddleware('/path', {
    target: API_URL,
    changeOrigin: true,
    pathRewrite: (path, req) => `/something/${req?.body?.someParameter}`,
    onProxyReq: fixRequestBody // <- Add this line
  });
于 2021-12-22T10:47:26.697 回答