-1

我正在尝试在代码中本地使用 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>

以下是我面临的错误

在此处输入图像描述

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

4

1 回答 1

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>
于 2015-07-14T12:37:34.897 回答