gpt4 book ai didi

javascript - Node Js 上的 Potli - "socket hang up and read ECONNRESET"

转载 作者:行者123 更新时间:2023-12-03 10:18:42 28 4
gpt4 key购买 nike

我在 Nodejs 上使用 Plotly 时遇到一些错误,你能帮我吗?

我编写了一个演示,从 splotly api 生成图像,每 20 秒,服务器将创建一个图表图像。有些图像很好,但随后会抛出错误:

enter image description here

enter image description here

我的代码:

setInterval(function() {
plotly.getImage(figure, imgOpts, function(error, imageStream) {
if (error) return console.log(error);
var time = new Date();
console.log("1--" + new Date());
var fileStream = fs.createWriteStream(time + '.png');
console.log("2--" + new Date());
imageStream.pipe(fileStream);

// setTimeout(function(){
// console.log("3--"+new Date());
// //createPdfkit(time);
// },10000);


// imageStream.on('end',function(){
//
// });
});

}, 20000);

最佳答案

ECONNRESET”通常表示您建立的连接已关闭。

我假设这个错误是在plotly.getImage()之后记录的?在这种情况下,您只需处理错误即可。 if (error)//don't continue 错误的原因可能是您尝试获取的图像不存在,如果它没有通过plotly 进行相应处理。您可能会在plotly 的 github issues 上发帖,运气会更好。 。

关于javascript - Node Js 上的 Potli - "socket hang up and read ECONNRESET",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29743037/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com