使用 SystemJS 从 TypeScript 组件导入文件夹
Import folder from TypeScript components using SystemJS
我使用 Angular2、TypeScript 和 SystemJS 作为模块加载器。出于调试原因,我主要在这里使用 SystemJs 来保存文件 "as is"。它基本上可以工作,但我有特定的问题加载组件。我在这里阅读了几个答案,但没有发现可比性。
我的应用程序有这样的结构:
请注意 Components 文件夹中的 "index.d.ts"。原因只是 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 开始加载时,它无法加载文件夹。
If I use single files everything works perfectly. So all base paths etc. are correct.
但是,最终有数百个组件,我认为加载单个文件会使我的 TypeScript 代码变得混乱。
Using WebPack or other loader is not an answer. The problem I face is the improvement of writing nice looking TypeScript files and have the compiled JavaScript handy for debugging (and learning).
当前的 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 从 folder/directory 加载组件?我怀疑这主要是 SystemJs 配置问题,但找不到设置。
尝试将 index.d.ts
重命名为 index.ts
我使用 Angular2、TypeScript 和 SystemJS 作为模块加载器。出于调试原因,我主要在这里使用 SystemJs 来保存文件 "as is"。它基本上可以工作,但我有特定的问题加载组件。我在这里阅读了几个答案,但没有发现可比性。
我的应用程序有这样的结构:
请注意 Components 文件夹中的 "index.d.ts"。原因只是 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 开始加载时,它无法加载文件夹。
If I use single files everything works perfectly. So all base paths etc. are correct.
但是,最终有数百个组件,我认为加载单个文件会使我的 TypeScript 代码变得混乱。
Using WebPack or other loader is not an answer. The problem I face is the improvement of writing nice looking TypeScript files and have the compiled JavaScript handy for debugging (and learning).
当前的 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 从 folder/directory 加载组件?我怀疑这主要是 SystemJs 配置问题,但找不到设置。
尝试将 index.d.ts
重命名为 index.ts