人力车示例我正在使用: http://code.shutterstock.com/rickshaw/examples/extensions.html
这个例子作为一个例子很有效,但是一旦我开始合并实时流数据,我开始遇到问题。例如,出现以下错误。我还要提一下,我已经将人力车页面从我的windows机器移动到linux服务器,以防有可能缺少依赖项?
Uncaught couldn't find jQuery UI at window.jQuery.ui
Rickshaw.Graph.Behavior.Series.Order @ rickshaw.min.js:2
(anonymous function) @ sensorDataDashboard.html:272
n.Callbacks.j @ jquery.js:3094
n.Callbacks.k.fireWith @ jquery.js:3206
x @ jquery.js:8259
n.ajaxTransport.k.cors.a.crossDomain.send.b @ jquery.js:8600
我的sensorDataDashboard中的关联行272如下:
var order = new Rickshaw.Graph.Behavior.Series.Order( { // Enable real time reordering of series by user
graph: graph,
legend: legend
} );
我已经包括:
<script src="lib/jquery-ui/jquery-ui.js"></script>
<link type="text/css" rel="stylesheet" href="lib/jquery-ui/jquery-ui.css">
深入研究“Rickshaw.Graph.Behavior.Series.Order”:
if (typeof window.jQuery.ui == 'undefined') {
throw "couldn't find jQuery UI at window.jQuery.ui";
}
所以,似乎“typeof window.jQuery.ui =='undefined'”。我是jQuery-UI的新手,所以我不确定这意味着什么。
如果我可以提供任何其他信息来帮助确定此错误的来源,那就太棒了!在我的搜索中,我没有在网上找到此错误代码。