1

我想显示一个图表 - 我正在使用本教程

这些

<script type="text/javascript">dojo.require("dojox.charting.widget.Chart2D.js");</script>
<script type="text/javascript">dojo.require("dojox.charting.themes.Claro.js");</script>

在 chrome 开发人员视图中显示为

未捕获的错误:无法加载“dojox.charting.widget.Chart2D.js”;最后尝试'../dojox/charting/widget/Chart2D/js.js'

在 MyEclipse 4 Spring 中包含和使用 dojox 函数的方法是什么?

Google 建议将 Spring-JS 更新到最新版本(因为 ME4S 版本较旧且 Spring-JS 不包含 dojox),并且还将 Jojo 库包含在 Web 应用程序根目录中,以便资源 serverlet 可以找到它。尝试了这些和其他所有组合均无济于事。

我让 Jojo TabContainer 工作没有问题。它使用这个:

<script type="text/javascript">dojo.require("dijit.layout.ContentPane");</script>
<script type="text/javascript">dojo.require("dijit.layout.TabContainer");</script>

另外,所有初学者都需要这么长时间来加快速度吗?

谢谢你的帮助。

4

1 回答 1

0

您包含的文件不正确;请注意,您正在使用:

<script type="text/javascript">dojo.require("dojox.charting.widget.Chart2D.js");</script>
<script type="text/javascript">dojo.require("dojox.charting.themes.Claro.js");</script>

什么时候应该:

<script type="text/javascript">dojo.require("dojox.charting.widget.Chart2D");</script>
<script type="text/javascript">dojo.require("dojox.charting.themes.Claro");</script>

基本上,从 dojo.require 中删除“.js”。

于 2012-03-28T17:24:45.787 回答