angular-cli git https://github.com/angular/angular-cli/issues/3701で発生して問題が発生しましたが、ここに投稿するように言われました。
2.0.0
angularへの最近のアップグレードまで、私の角度プロジェクトは正常に機能していました2.3.1
。
children
ルート
に を追加すると、次のエラーが発生します。
ERROR in Error encountered resolving symbol values statically. Calling function 'label', function calls are not supported. Consider replacing the function or lambda with a reference to an exported function, resolving symbol ActionTypes in C:/Workspace/xxx/src/app/game-vendor.action.ts, resolving symbol gameVendorRoutes in C:/Workspace/xxx/src/app/game-vendor/game-vendor.routing.ts, resolving symbol gameVendorRouting in C:/Workspace/
xxx/src/app/game-vendor/game-vendor.routing.ts, resolving symbol gameVendorRouting in C:/Workspace/xxx/src/app/game-vendor/game-vendor.routing.ts, resolving symbol GameVendorModule in C:/Workspace/xxx/src/app/game-vendor/game-vendor.module.ts, resolving symbol GameVendorModule in C:/Workspace/xxx/src/app/game-vendor/game-vendor.module.ts
コメントされたコードが問題を引き起こしています。
export const gameVendorRoutes: Routes = [
{
path: 'gamevendors',
component: InnerPageRegionComponent,
children: [
{
path: 'get',
component: GameVendorGetComponent,
data: {
title: 'Get Game Vendor',
description: 'Get Game Vendor',
keywords: ['get', 'game', 'vendor', 'get game vendor'],
category: 'Game Vendor',
},
},
// {
// path: 'create',
// component: GameVendorCreateComponent,
// data: {
// title: 'Create Game Vendor',
// description: 'Create Game Vendor',
// keywords: ['create', 'game', 'vendor', 'create game vendor'],
// category: 'Game Vendor',
// recallAction: actions.ActionTypes.UPDATE_STORE,
// },
// },
],
},
];
export const gameVendorRouting: ModuleWithProviders = RouterModule.forChild(gameVendorRoutes);
この問題の回避策はありますか??