我正在使用highcharts-export-server创建图形,但是当我尝试访问base64中的结果(res.data)为空时,我需要将该结果传递给我的其他函数并使用图
注意:我试图将pdf创建函数放到在base64中返回图形的函数中,但这也不起作用
var imageBase64Chart = ''
exporter.initPool()
exporter.export(exportSettings, function (err, res) {
imageBase64Chart = 'data:image/png;base64,'+ res.data
exporter.killPool();
process.exit(1);
})
console.log(imageBase64Chart)