在本地使用HighChart JS文件

时间:2015-07-14 12:30:06

标签: javascript html jsp highcharts external-script

我正在尝试在代码中本地使用highchats js文件。当我使用如下的官方链接时,它正在工作

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="height: 400px; min-width: 310px; max-width: 600px; margin: 0 auto"></div>

当我尝试使用与本地导入的文件相同时,它不起作用

<script src="${pageContext.servletContext.contextPath}/resources/js/exporting.js"></script>
<script src="${pageContext.servletContext.contextPath}/resources/js/highcharts-more.js"></script> 
<script src="${pageContext.servletContext.contextPath}/resources/js/highcharts.js"></script>

以下是我正面临的错误

enter image description here

是否可以在本地使用,或者如果我将这些文件保存在我的服务器中,它会有所帮助。

1 个答案:

答案 0 :(得分:1)

我认为在加载库时,顺序很重要。试试这个:

   <script src="${pageContext.servletContext.contextPath}/resources/js/highcharts.js"></script>
  <script src="${pageContext.servletContext.contextPath}/resources/js/highcharts-more.js"></script> 
    <script src="${pageContext.servletContext.contextPath}/resources/js/exporting.js">    </script>