我们正在使用 angular 2 制作一个小示例,我从快速入门示例中复制了代码,出现错误:“es6Promise 未定义”。
我们发现https://jspm.io/system@0.16.js并不是纯system.js,它包含如下自定义代码:
document.write('
<script type="text/javascript" src="'+basePath+'es6-module-loader@0.16.6.js" data-init="upgradeSystemLoader"></script>')
System.config({
paths:{
"*":"https://registry.jspm.io/*.js",
"~/*":"*.js",
"npm:*":"https://npm.jspm.io/*.js",
"github:*":"https://github.jspm.io/*.js"
},
map:{
traceur:"github:jmcriffey/bower-traceur@0.0.87",
"traceur-runtime":"github:jmcriffey/bower-traceur-runtime@0.0.87",
babel:"npm:babel-core@5"
}
});
我们想在本地加载这个文件,有人知道如何配置吗?如何生成system@0.16.js(结合system.js和自定义配置)?