使用 Angular 2.4.0、tsc 2.3.1,我正在尝试将 Dagre 与 JointJS/graphlib 一起使用,以使用 SystemJS 作为加载器在 Angular2 中绘制图形。
http://www.daviddurman.com/automatic-graph-layout-with-jointjs-and-dagre.html
我不知道如何按照 JointJS 的要求在浏览器中获取“dagre”对象
var dagre = require('dagre');
我的 Angular2 组件包括
import * as dagre from 'dagre';
我的 SystemJS 配置:
(function () {
System.config({
map: {
'dagre': '/static/libs/dagre/dagre.js'
}
});
})();
无法加载 dagre 会导致 JointJS 在尝试调用 dagre.layout 时出现未定义的错误:
Cannot read property 'layout' of undefined
// Executes the layout.
dagre.layout(glGraph, { debugTiming: !!opt.debugTiming });
也许这是库无法自行导出的问题,还是我必须在 SystemJS 配置中指定格式?