我使用Angular2,TypeScript和SystemJS作为模块加载器。我主要在这里使用SystemJ来保存文件"按原样#34;出于调试原因。它基本上有效,但我有特定的问题加载组件。我在这里读了几个答案,但没有发现任何可比性。
我的App有这个结构:
请注意" index.d.ts"在Components文件夹中。原因只是app.ts文件中的简化导入,如下所示:
import * as cmp from './Components';
该文件夹包含我的所有组件和' index.d.ts'看起来像这样:
export * from './shop-root';
export * from './shop-catalogs';
export * from './shop-edit-cat';
export * from './shop-about';
export * from './shop-contact';
我使用我的组件,然后(摘自@NgModule):
declarations: [
cmp.ShopRootComponent,
cmp.ShopCatalogs,
cmp.ShopEditCat,
cmp.ShopAbout,
cmp.ShopContact
]
从打字稿的角度来看,这很好用,这里没有问题。我的打字稿编译器很开心并创建了一个app.js'包含导入的文件:
var cmp = require('./Components');
当SystemJS开始加载时,加载文件夹失败。
如果我使用单个文件,一切都很完美。所以所有基本路径等都是正确的。
然而,最终有数百个组件,我认为单个文件加载会混乱我的TypeScript代码。
使用WebPack或其他加载器不是答案。我面临的问题是改进编写漂亮的TypeScript文件,并将编译好的JavaScript用于调试(和学习)。
当前的System.config.js如下所示:
(function (global) {
System.config({
paths: {
// paths serve as alias
'npm:': 'assets/js/lib/'
},
// map tells the System loader where to look for things
map: {
// our app is within the app folder
app: 'assets/js/app',
// angular bundles
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
// other libraries
'rxjs': 'npm:rxjs',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api',
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
app: {
main: './app.js',
defaultExtension: 'js'
},
rxjs: {
defaultExtension: 'js'
},
'angular-in-memory-web-api': {
main: './index.js',
defaultExtension: 'js'
}
}
});
})(this);
同样,对于作为单个文件引用的组件,此配置工作正常。
问题
如何使用SystemJS从文件夹/目录加载组件?我怀疑它主要是SystemJs配置问题,但无法找到设置。
答案 0 :(得分:0)
尝试将index.d.ts
重命名为index.ts