web-dev-qa-db-ja.com

Angular 5遅延読み込みエラー:モジュールが見つかりません

遅延読み込みを使用したいのですが、なぜ機能しないのか理解できません。「モジュールが見つかりません」というエラーが表示されます。
これは私の環境です。
-Angular 5.2.1
-.NET Core 2
-Webpack 3.10.0
-angle-router-loader-loader 0.8.2
-@ angular/cli 1.6.5
[。どうしたの?

[〜#〜] folders [〜#〜]

ClientApp
  app
    components
      users
        users-routing.module.ts
        users.module.ts
  app-routing.module.ts
  app.module.shared.ts

app-routing.module.ts

const appRoutes: Routes = [
    {
        path: 'users',
        loadChildren: './components/users/users.module#UsersModule'/* ,
        canLoad: [AuthGuard] */
    },
    {
        path: '',
        redirectTo: '/login',
        pathMatch: 'full'
    },
    {
        path: '**',
        redirectTo: '/login'
    }
];

@NgModule({
    imports: [
        RouterModule.forRoot(
            appRoutes,
            { enableTracing: false }
        )
    ],
    exports: [
        RouterModule
    ],
    providers: [
        CanDeactivateGuard
    ]
})
export class AppRoutingModule { }

users-routing.module.ts

const usersRoutes: Routes = [
    {
        path: '',
        component: UsersComponent/* ,
        //canActivate: [AuthGuard],
        children: [
            {
                path: 'detail',
                canActivateChild: [AuthGuard],
                children: [
                    {
                        path: ':id',
                        component: UserViewComponent
                    },
                    {
                        path: 'edit/:id',
                        component: UserFormComponent,
                        canDeactivate: [CanDeactivateGuard],
                        resolve: {
                            user: UsersResolver
                          }
                    },
                    {
                        path: '',
                        component: UserFormComponent,
                        canDeactivate: [CanDeactivateGuard]
                    }
                ]
            },
            {
                path: '',
                component: UsersListComponent
            }
        ] */
    }
];

@NgModule({
    imports: [
        RouterModule.forChild(
            usersRoutes
        )
    ],
    exports: [
        RouterModule
    ]
})
export class UsersRoutingModule { }

users.module.ts

@NgModule({
    imports: [
        CommonModule,
        FormsModule,
        UsersRoutingModule,
        RouterModule
    ],
    declarations: [
        UsersComponent,
        UserFormComponent,
        UsersListComponent,
        UserViewComponent
    ],
    providers: [
        UsersResolver,
        RouterModule
    ]
})
export class UsersModule { }

webpack.config.js

const path = require('path');
const webpack = require('webpack');
const merge = require('webpack-merge');
const AngularCompilerPlugin = require('@ngtools/webpack').AngularCompilerPlugin;
const CheckerPlugin = require('awesome-TypeScript-loader').CheckerPlugin;

module.exports = (env) => {
    // Configuration in common to both client-side and server-side bundles
    const isDevBuild = !(env && env.prod);
    const sharedConfig = {
        stats: {
            modules: false
        },
        context: __dirname,
        resolve: {
            extensions: ['.js', '.ts']
        },
        output: {
            filename: '[name].js',
            publicPath: 'dist/' // Webpack dev middleware, if enabled, handles requests for this URL prefix
        },
        module: {
            rules: [{
                    test: /\.ts$/,
                    include: /ClientApp/,
                    use: isDevBuild ? ['awesome-TypeScript-loader?silent=true', 'angular2-template-loader'] : '@ngtools/webpack'
                },
                {
                    test: /\.html$/,
                    use: 'html-loader?minimize=false'
                },
                {
                    test: /\.css$/,
                    use: ['to-string-loader', isDevBuild ? 'css-loader' : 'css-loader?minimize']
                },
                {
                    test: /\.(png|jpg|jpeg|gif|svg)$/,
                    use: 'url-loader?limit=25000'
                }
            ],
            loaders: [
                {
                  test: /\.ts$/,
                  loaders: [
                    'awesome-TypeScript-loader'
                  ]
                },
                {
                  test: /\.(ts|js)$/,
                  loaders: [
                    'angular-router-loader'
                  ]
                }
              ]
        },
        plugins: [new CheckerPlugin()]
    };

    // Configuration for client-side bundle suitable for running in browsers
    const clientBundleOutputDir = './wwwroot/dist';
    const clientBundleConfig = merge(sharedConfig, {
        entry: {
            'main-client': './ClientApp/boot.browser.ts'
        },
        output: {
            path: path.join(__dirname, clientBundleOutputDir)
        },
        plugins: [
            new webpack.DllReferencePlugin({
                context: __dirname,
                manifest: require('./wwwroot/dist/vendor-manifest.json')
            })
        ].concat(isDevBuild ? [
            // Plugins that apply in development builds only
            new webpack.SourceMapDevToolPlugin({
                filename: '[file].map', // Remove this line if you prefer inline source maps
                moduleFilenameTemplate: path.relative(clientBundleOutputDir, '[resourcePath]') // Point sourcemap entries to the original file locations on disk
            })
        ] : [
            // Plugins that apply in production builds only
            new webpack.optimize.UglifyJsPlugin(),
            new AngularCompilerPlugin({
                tsConfigPath: './tsconfig.json',
                entryModule: path.join(__dirname, 'ClientApp/app/app.module.browser#AppModule'),
                exclude: ['./**/*.server.ts']
            })
        ])
    });

    // Configuration for server-side (prerendering) bundle suitable for running in Node
    const serverBundleConfig = merge(sharedConfig, {
        resolve: {
            mainFields: ['main']
        },
        entry: {
            'main-server': './ClientApp/boot.server.ts'
        },
        plugins: [
            new webpack.DllReferencePlugin({
                context: __dirname,
                manifest: require('./ClientApp/dist/vendor-manifest.json'),
                sourceType: 'commonjs2',
                name: './vendor'
            })
        ].concat(isDevBuild ? [] : [
            // Plugins that apply in production builds only
            new AngularCompilerPlugin({
                tsConfigPath: './tsconfig.json',
                entryModule: path.join(__dirname, 'ClientApp/app/app.module.server#AppModule'),
                exclude: ['./**/*.browser.ts']
            })
        ]),
        output: {
            libraryTarget: 'commonjs',
            path: path.join(__dirname, './ClientApp/dist')
        },
        target: 'node',
        devtool: 'inline-source-map'
    });

    return [clientBundleConfig, serverBundleConfig];
};  

tsconfig.json

{
  "compilerOptions": {
    "module": "es2015",
    "moduleResolution": "node",
    "target": "es5",
    "sourceMap": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "skipDefaultLibCheck": true,
    "skipLibCheck": true, // Workaround for https://github.com/angular/angular/issues/17863. Remove this if you upgrade to a fixed version of Angular.
    "strict": true,
    "lib": [ "es6", "dom" ],
    "types": [ "webpack-env" ], 
    "typeRoots": [
      "node_modules/@types"
    ]
  },
  "exclude": [ "bin", "node_modules" ],
  "atom": { "rewriteTsconfig": false }
}

エラーメッセージ

未処理のPromiseの拒否:モジュール './ClientApp/app/components/users/users.module'が見つかりません。 ;ゾーン:angular;タスク:Promise.then;値:エラー:vendor.js?v = AdjSBPSITyauSY4VQBBoZmJ6NdWqor7MEuHgdi2Dgkoでモジュール './ClientApp/app/components/users/users.module'が見つかりません:34015 ZoneDelegate.invoke(vendor.js V = AdjSBPSITyauSY4VQBBoZmJ6NdWqor7MEuHgdi2Dgko?:117428)のゾーンでObject.onInvokeで(vendor.js V = AdjSBPSITyauSY4VQBBoZmJ6NdWqor7MEuHgdi2Dgko:?:5604)ZoneDelegate.invokeで(117427 vendor.js V = AdjSBPSITyauSY4VQBBoZmJ6NdWqor7MEuHgdi2Dgko?)。 ?Object.onInvokeTask(vendor.js V = AdjSBPSITyauSY4VQBBoZmJ6NdWqor7MEuHgdi2Dgkoで実行(?vendor.js V = AdjSBPSITyauSY4VQBBoZmJ6NdWqor7MEuHgdi2Dgko:117178)?vendor.js Vで= AdjSBPSITyauSY4VQBBoZmJ6NdWqor7MEuHgdi2Dgko:117898 ZoneDelegate.invokeTaskで(117461 vendor.js V = AdjSBPSITyauSY4VQBBoZmJ6NdWqor7MEuHgdi2Dgko?): 5595)ZoneDelegate.invokeTask(vendor.js?v = AdjSBPSITyauSY4VQBBoZmJ6NdWqor7MEuHgdi2Dgko:117460)でZone.runTask(vendor.js?v = AdjSBPSITyauSY4Vug/com/find/gError7MEgNotify/find/com/gd/hg/gd/hg/gd/hg/gd/hg/gd/hg/gd/hg/hd/hgdi/gq/hg/gm/hgdi/hgg/gd/hgdi/hgdi/hg/gm/hgdi/gq/hgdi/hgdi/hgdi/hgdi/hgdi/hg/gm/hgdi/hgdi/hgdi/hd/hgdi/hgdi/hgdi/dgq/hg/gm/hgdi/hgdi7g /) sers/users.module '。 http:// localhost:5000/dist/vendor.js?v = AdjSBPSITyauSY4VQBBoZmJ6NdWqor7MEuHgdi2Dgko:34015:9 ... [切り捨て]

[〜#〜] edit [〜#〜]

テスト用のstackblitzへのリンク

6
Luciano

私は2つの解決策を見つけました(編集によりOPを介して):

1)インポート文で既に解決された後のモジュールへの参照:

import { UsersModule } from './components/users/users.module';

次に、この方法を参照します。

{
        path: 'users',
        loadChildren: () => UsersModule,
        canLoad: [AuthGuard]
}

2)ng-router-loaderをアプリケーションに追加し(npm install ng-router-loader --save-dev)、次のようにwebpackを設定します:

        rules: [{
                test: /\.ts$/,
                include: /ClientApp/,
                //use: isDevBuild ? ['awesome-TypeScript-loader?silent=true', 'angular2-template-loader'] : '@ngtools/webpack'
                use: isDevBuild ? [{ loader: 'ng-router-loader' }, 'awesome-TypeScript-loader?silent=true', 'angular2-template-loader'] : '@ngtools/webpack'
            },
            {
                test: /\.html$/,
                use: 'html-loader?minimize=false'
            },
            {
                test: /\.css$/,
                use: ['to-string-loader', isDevBuild ? 'css-loader' : 'css-loader?minimize']
            },
            {
                test: /\.(png|jpg|jpeg|gif|svg)$/,
                use: 'url-loader?limit=25000'
            }
        ],

次に、パスでモジュールを参照します。

    {
        path: 'users',
        loadChildren: './components/users/users.module#UsersModule',
        canLoad: [AuthGuard]
    }
16
FrankerZ

LoadChildrenの値を文字列から関数に交換することを提案する現在受け入れられている答えは、実動ビルドを行うときにAOTコンパイルの可能性を取り除きます。

私のために働いたのは、1)絶対パスを使用する2)lazy.jsonのプロジェクト>「プロジェクト名」>アーキテクト>ビルド>オプション> lazyModulesの下に、遅延ロードされたモジュールを文字列配列として追加することでした。パスは、loadChildrenで定義されているものと同じでなければなりません。

だから、あなたの場合、これはあなたのルーティングモジュールで動作するはずだと思います:

loadChildren: 'app/components/users/users.module#UsersModule'

また、angular.jsonで、上記で指定した場所にこれを追加します。

lazyModules: ["app/components/users/users.module"]
2

通常、これはパスのエラーです。パスを変更します。

たとえば、このソリューションは私のために機能します::

loadChildren: '../changelog/changelog.module#ChangelogModule'

./folderまたは../folderまたはfolder

0
Maxim Savin

あなたのuser.module.tsでやろうとしてください:

import {UserRoutes } from './User.routing'

@NgModule({
    imports: [
        CommonModule,
        FormsModule,
        UsersRoutingModule.forChild(UserRoutes), //<-- for child
        RouterModule
    ],
    declarations: [
        UsersComponent,
        UserFormComponent,
        UsersListComponent,
        UserViewComponent
    ],
    providers: [
        UsersResolver,
        RouterModule
    ]
})
export class UsersModule { }
0

タイプミスのフォルダー名はUsersではなくusersです。

変化する

'./components/users/users.module#UsersModule'

'./components/Users/users.module#UsersModule'
0
Vivek Doshi