我试图将https://github.com/valor-software/ng2-dragula注入到使用 JSPM 包管理器统治的 Angular2 项目中。但是当我导入它时,主 boot.js 文件无法编译......我之前找到的唯一解决方案是将项目移动到 webpack 管理。还有其他解决方案吗?
问问题
179 次
1 回答
0
只需确保在 index.html 中包含 Dragula 的 .js 文件并配置 SystemJS 路径。
<script src="/node_modules/dragula/dist/dragula.min.js"></script>
<script src="/node_modules/ng2-dragula/bundles/ng2-dragula.js"></script>
<script>
System.config({
paths:{
'dragula' : '../node_modules/dragula/dist/dragula.min.js'
},
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('app/main')
.then(null, console.error.bind(console));
</script>
于 2016-04-22T11:09:49.633 回答