如何使用require.js加载DyGraphs

时间:2015-01-06 20:58:43

标签: javascript dygraphs

我正在尝试将DyGraph集成到一个使用require.js加载模块的网站中。 可以使用require加载DyGraph吗? 我查看了代码,但没有看到任何define()。

我遇到了这个项目,看起来它需要“包裹”。

https://github.com/mgmarino/kanso-dygraphs

以前有人这样做过吗?

感谢。

1 个答案:

答案 0 :(得分:0)

最新的dygraphs只需加载:

// put this in your require config
paths: {
    'dygraphs'              : 'bower_modules/dygraphs/dygraph-combined',
}

...
require('dygraphs');

console.log(Dygraph); // Dygraph is added to global scope