0

我正在使用 HighCharts 3.0.2 版。已在本地设置 Highcharts 服务器以导出图表。当从图表右上角选择下载为 png/jpeg/pdf 时,将显示 Highcharts 演示页面。

请让我知道这可能是什么原因。

注意:已经在我的 highcharts 导出服务器的 app.properties 文件中设置了 Phatom js 路径。

4

1 回答 1

2

可能你的exporting.url结尾没有斜杠。导出服务器会将 GET(不带斜杠)重定向到演示/欢迎页面

代替

exporting: {
    url: http://localhost/export
}

做这个

exporting: {
    url: http://localhost/export/
}
于 2013-09-25T15:52:29.887 回答