Angular2 と SystemJS を使用して Web アプリケーションを作成しています。アプリにいくつかのモジュールがあり、ルーター構成で遅延読み込みを使用してそれらを開きます。
これは、2 つのモジュールを遅延ロードするアプリのルーティング ファイルです。
const appRoutes: Routes = [
{ path: '', component: MainComponent,
canActivate: [AuthGuard],
children: [
{ path: 'dashboard', component: DashboardComponent },
{ path: 'first-section', loadChildren: 'app/modules/FIRST-SECTION/first-section.module' },
{ path: 'second-section', loadChildren: 'app/modules/SECOND-SECTION/second-section.module' },
{ path: 'documents', component: DocumentsComponent },
{ path: 'users', component: UsersComponent },
{ path: '', redirectTo: 'dashboard', pathMatch: 'full' }
]
}
];
開発サーバーと本番ビルドのタスクを作成するために Gulp を使用しています。ビルドには、アプリ全体の縮小された JS ファイルを作成する SystemJS Builder を使用します。
gulp.task('app-bundle', function() {
var builder = new Builder('src', 'src/systemjs.config.js');
return builder.buildStatic('app/main.js', 'build/scripts/app.min.js', { minify: true });
});
しかし...ビルドパッケージでサーバーを実行しようとすると、遅延ロードされたモジュールを実行しようとするとアプリが機能しません。次のエラーが表示されます。
GET http://127.0.0.1:8080/app/modules/FIRST-SECTION/first-section.module 404 (Not Found)
これが私のsystemjs.config.js
ファイルです:
(function (global) {
System.config({
paths: {
'npm:': './node_modules/',
},
map: {
app: 'app',
'@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',
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
'rxjs': 'npm:rxjs',
'lodash': 'npm:lodash/lodash.min.js',
'jquery': 'npm:jquery/dist/jquery.min.js',
},
packages: {
app: { main: './main.js', defaultExtension: 'js' },
rxjs: { defaultExtension: 'js' },
}
});
})(this);
編集:
静的バンドルを使用した SystemJs Builder サイトで説明されているように、モジュールをロードするために SystemJs は必要ありません。実際、静的バンドルを作成しています (buildStatic
の代わりに , を使用bundle
) が、SystemJs を除外しているため、モジュールを遅延ロードする方法は他にないようです。では、システム JS を使用せずに (フォルダー内のファイルをbundle
使用せずに)、遅延読み込みモジュールを使用して製品ビルドを作成する方法を教えてください。私はWebPackがそれを行うことができると思います...systemjs.config.js
dist