Ошибка в highcharts-export-server с expressjs - PullRequest
1 голос
/ 11 марта 2019

Я пытаюсь создать REST API для экспорта Highcharts с использованием node и express. Ниже мой код,

var express = require('express');
var path = require('path');
var bodyParser = require("body-parser");
const chartExporter = require("highcharts-export-server");

var app = express();
app.use(bodyParser.json());

var port = 1200;

app.post('/chart', function(req, res){
    console.log("Json Body from the post request\n", req.body);
    chartExporter.initPool();
    chartExporter.export(res.body, function(error, response){
        console.log("Error from the function", error);
        var imageb64 = response.data;
        console.log("Image From the exporter\n", imageb64);
    });
    chartExporter.killPool();
    console.log("\nPool Killed");
    return "Server Returns successfully!";
});

module.exports = app;

Параметры диаграммы ниже, которые передаются как тело API,

{
   "type": "png",
   "options": {
       "chart": {
           "type": "pie"
       },
       "title": {
           "text": "Heading of Chart"
       },
       "plotOptions": {
           "pie": {
               "dataLabels": {
                   "enabled": true,
                   "format": "<b>{point.name}</b>: {point.y}"
               }
           }
       },
       "series": [
           {
               "data": [
                   {
                       "name": "a",
                       "y": 100
                   },
                   {
                       "name": "b",
                       "y": 20
                   },
                   {
                       "name": "c",
                       "y": 50
                   }
               ]
           }
       ]
   }
}

И я получаю следующую ошибку. Если я запускаю API,

TypeError: Cannot read property 'svg' of undefined
    at Object.module.exports [as export] (D:\Dev\hc-export-server\node_modules\highcharts-export-server\lib\chart.js:270:23)
    at D:\Dev\hc-export-server\server.js:60:22
    at Layer.handle [as handle_request] (D:\Dev\hc-export-server\node_modules\express\lib\router\layer.js:95:5)
    at next (D:\Dev\hc-export-server\node_modules\express\lib\router\route.js:137:13)
    at Route.dispatch (D:\Dev\hc-export-server\node_modules\express\lib\router\route.js:112:3)
    at Layer.handle [as handle_request] (D:\Dev\hc-export-server\node_modules\express\lib\router\layer.js:95:5)
    at D:\Dev\hc-export-server\node_modules\express\lib\router\index.js:281:22
    at Function.process_params (D:\Dev\hc-export-server\node_modules\express\lib\router\index.js:335:12)
    at next (D:\Dev\hc-export-server\node_modules\express\lib\router\index.js:275:10)
    at D:\Dev\hc-export-server\node_modules\body-parser\lib\read.js:130:5

Но если я запускаю один и тот же набор кодов отдельно от API (скажем, в том же файле), я получаю ответ от функции экспортера. Как ниже. Ответ печатается в терминале.

var express = require('express');
var path = require('path');
var bodyParser = require("body-parser");
const chartExporter = require("highcharts-export-server");

var app = express();
app.use(bodyParser.json());

var port = 1200;

const chartDetails = {
   "type": "png",
   "options": {
       "chart": {
           "type": "pie"
       },
       "title": {
           "text": "Heading of Chart"
       },
       "plotOptions": {
           "pie": {
               "dataLabels": {
                   "enabled": true,
                   "format": "<b>{point.name}</b>: {point.y}"
               }
           }
       },
       "series": [
           {
               "data": [
                   {
                       "name": "a",
                       "y": 100
                   },
                   {
                       "name": "b",
                       "y": 20
                   },
                   {
                       "name": "c",
                       "y": 50
                   }
               ]
           }
       ]
   }
};
chartExporter.initPool();
chartExporter.export(chartDetails, function(error, response){
        var imageb64 = response.data;
        console.log("Image From the exporter\n", imageb64);
    });
app.listen(port, function(){
    console.log("Server started at port ",  port);
});

app.post('/chart', function(req, res){
    console.log("Json Body from the post request\n", req.body);
    chartExporter.initPool();
    chartExporter.export(res.body, function(error, response){
        console.log("Error from the function", error);
        var imageb64 = response.data;
        console.log("Image From the exporter\n", imageb64);
    });
    chartExporter.killPool();
    console.log("\nPool Killed");
    return "Server Returns successfully!";
});

module.exports = app;

Как мне заставить его работать в REST API? Ценю любую помощь. Спасибо

1 Ответ

1 голос
/ 11 марта 2019

Вы сделали две ошибки:

  • вместо res.body вы должны использовать req.body
  • chartExporter.killPool() должно быть внутри chartExporter.export обратный вызов метода

Правильный код:

var express = require('express');
var path = require('path');
var bodyParser = require("body-parser");
const chartExporter = require("highcharts-export-server");

var app = express();
app.use(bodyParser.json());

var port = 1200;

app.post('/chart', function(req, res){
    console.log("Json Body from the post request\n", req.body);
    chartExporter.initPool();
    chartExporter.export(req.body, function(error, response){
        console.log("Error from the function", error);
        var imageb64 = response.data;
        console.log("Image From the exporter\n", imageb64);
        chartExporter.killPool();
        process.exit(1);

        res.send(imageb64);
    });
});

module.exports = app;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...