节点 js 请求超时问题



我的应用程序处于反应状态,并通过axios调用调用node层。然后,node层调用外部api,大约需要 7 分钟才能响应。但是,我在发出请求后大约 2-3 分钟内收到超时错误。当我直接调用外部api(而不是通过节点层(时,我能够在 7 分钟内得到响应。我尝试使用诸如以下建议为node设置timeout

var http = require('http');
    http.createServer(function (req, res) {
      res.writeHead(200, {'Content-Type': 'text/plain'});
      res.end("Hello World");
    }).on('connection', function(socket) {
      socket.setTimeout(200000000);
    }).listen(3000);

并且还使用server.timeout,但似乎没有任何效果。有人可以建议如何解决问题。

我收到以下错误

创建错误时出现网络错误 (webpack-internal:///./node_modules/axios/lib/core/createError.js:16:15

我正在使用公理

axios.post('/api/parseAndExtractFile', formData, config)
  .then((response) => {
    if (response.status === 200) {
      const fileName = `enriched_v3_spec_${new Date().getTime()}`
      const blob = new Blob([(response.data)], {type: 'application/vnd.ms-excel.sheet.macroEnabled.12'})
      saveAs(blob, fileName)
    } else {
      toast.error('Oops, something went wrong. Please try again.', {autoClose: 4000})
    }
    this.setState({
      loading: false,
      showAuditLog: 'show'
    })
  })
  .catch((error) => {
    this.setState({loading: false})
    toast.error(`Error while fetching data ${error}`, {autoClose: 4000})
  })

节点和公理都有超时

1( 设置节点超时

var http = require('http');
var srvr = http.createServer(function (req, res) {
  res.write('Hello World!');
  res.end();
});
srvr.listen(8080);
srvr.timeout = 20000; // in milliseconds

2( 设置公理超时

const instance = axios.create({
  baseURL: 'https://some-domain.com/api/',
  timeout: 10000, // in milliseconds
  headers: {'X-Custom-Header': 'foobar'}
});

我认为你在错误的地方调用setTimeOut。您可能需要在 var 中设置 createServer,然后对其调用 setTimeOut,如下所示:

`var http = require('http');
var srv = http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end("Hello World");
})
svr.listen(3000);
svr.setTimeout(10000);

希望这有帮助

相关内容

  • 没有找到相关文章

最新更新