我正试图以这种常见的方式在我的应用中使用ng2-file-upload。
在我的模块中。
import { FileUploadModule } from 'ng2-file-upload';
在systemjs config。
map: {
...
'ng2-file-upload': '/static/node_modules/ng2-file-upload',
...
},
packages: {
'ng2-file-upload': {
main: 'ng2-file-upload.js',
defaultExtension: 'js'
}
}
})
SystemJS.import('main.js').then(function(m){
}, function(error){
console.log(error);
});
因此,我总是收到此错误。
Error: Unexpected value 'undefined' imported by the module 'AppModule'
但所有js文件都已正确下载。 我也试过index.js,bundle / ng2-file-upload.umd.js没什么用。 你能帮帮我吗?
答案 0 :(得分:0)
为了消除这种情况,我不得不将该行放在index.js。
中Object.defineProperty(exports, "__esModule", { value: true });
我不知道这是一个错误还是我做错了什么?