Highcharts设置导出服务器

问题描述 投票:0回答:1

我已经设置了用于导出highcharts的服务器。遵循http://www.highcharts.com/docs/export-module/setting-up-the-server中提到的所有步骤。

导出服务器URL为

http://myhostname:8080/highcharts-export-web

现在按照highchart文档,我已将highchart选项的导出'url'更改为

http://myhostname:8080/highcharts-export-web.

下面是代码段。

exporting: {
                          sourceWidth: 3000,
                          sourceHeight: 1000,
                          scale: 5,
                          url : "http://myhostname:8080/highcharts-export-web"
                }

但是当单击highchart导出按钮时,我的页面将重定向到"http://myhostname:8080/highcharts-export-web"。因此,由于我的图表页面已被重定向到导出服务器页面,因此根本不会导出图表。

由于整个页面都被重定向而不是执行简单的ajax发布,因此我在配置中缺少任何内容吗?

谢谢,拉胡尔

jquery ajax highcharts
1个回答
0
投票

这可能是有关phantom.js的问题。

可能无法找到phantom.js的路径

© www.soinside.com 2019 - 2024. All rights reserved.