gpt4 book ai didi

javascript - 如何在钛项目中包含 Dojo 图表

转载 作者:行者123 更新时间:2023-11-30 17:58:52 25 4
gpt4 key购买 nike

我正在尝试将 Dojo 图表包含在钛项目中。

我尝试加载带有 Dojo 声明的 webview,然后在应用程序中加载 webview。但我不能让它工作。我在我的项目中包含了一个文件夹 (libs_dojo),其中包含:

  • dojo.js
  • domReady.js
  • dojox/图表/图表
  • dojox/charting/plot2d/Lines
  • dojox/charting/axis2d/默认

这是我正在使用的简单 html:

<html>
<head>
<title>Chart</title>
</head>
<body>
<div id="simplechart" style="width: 250px; height: 150px;"></div>
<script src='libs_dojo/dojo.js' data-dojo-config="async:true"></script>
<script>
require([
"libs_dojo/dojox/charting/Chart",
"libs_dojo/dojox/charting/plot2d/Lines",
"libs_dojo/dojox/charting/axis2d/Default",
"libs_dojo/domReady!"
],
function (Chart) {
var chart = new Chart("simplechart");
chart.addPlot("default", {type: "Lines"});
chart.addAxis("x");
chart.addAxis("y", {vertical: true});
chart.addSeries("Series 1", [1, 2, 2, 3, 4, 5, 5, 7]);
chart.render();
});
</script>
</body>
</html>

我尝试的时候发现很多“Error loading xxx/libs_dojo/_base/lang.js or libs_dojo/_base/array.js...”

道场如何要求工作?我可以不这样做吗?以编程方式?您知道问题出在哪里吗?

提前致谢!

最佳答案

这可能会有帮助:http://dojotoolkit.org/reference-guide/1.8/dojox/charting.html?highlight=chartshttp://dojotoolkit.org/documentation/tutorials/1.9/charting/

第二个是一个很好的教程。

确保您已加载运行 dojo 所需的所有脚本。你下载了dojo.js了吗?否则你必须像这样加载它:

src="//ajax.googleapis.com/ajax/libs/dojo/1.9.1/dojo/dojo.js">

这是来自 dojo 的示例:

require([
// Require the basic 2d chart resource
"dojox/charting/Chart",

// Require the theme of our choosing
"dojox/charting/themes/Claro",

], function(Chart, theme){
// ....
});

问候,米里亚姆

关于javascript - 如何在钛项目中包含 Dojo 图表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17521731/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com