我正在尝试将DyGraph集成到一个使用require.js加载模块的网站中。 可以使用require加载DyGraph吗? 我查看了代码,但没有看到任何define()。
我遇到了这个项目,看起来它需要“包裹”。
https://github.com/mgmarino/kanso-dygraphs
以前有人这样做过吗?
感谢。
答案 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