我想显示一个图表-正在使用本教程。
这些
<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函数的方法是什么??
谷歌建议将Spring JS更新到最新版本(因为ME4S版本很旧,Spring JS不包括dojox),并将Jojo librabry包含在web应用程序根目录中,以便资源servelet可以找到它。尝试了这些和其他所有组合都没有用。
我对Jojo TabContainer的工作没有任何问题。它使用这个:
<script type="text/javascript">dojo.require("dijit.layout.ContentPane");</script>
<script type="text/javascript">dojo.require("dijit.layout.TabContainer");</script>
此外,所有初学者都需要这么长时间才能跟上速度吗?
谢谢你的帮助。
您包含的文件不正确;注意您正在使用:
<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>
基本上,将".js"从dojo.request.中删除