在 Nodejs 上使用 Plotly 时出现一些错误,你能帮帮我吗?
我编写了一个演示来从 splotly api 生成图像,每 20 秒,服务器将创建一个图表图像。有些图像很好,但随后将错误作为图像抛出:
我的代码:
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);