首页 > 解决方案 > Promise 未处理的拒绝 | 康波多克 | 角

问题描述

我正在使用 Compodoc 为 Angular 应用程序生成文档,网址:https ://github.com/compodoc/compodoc

生成文档时,出现错误。那时,脚本正在访问 app-routing.module.ts 文件。

[18:06:24] parsing        : ../src/app/app-routing.module.ts
[18:06:24] Analysing routes definitions and clean them if necessary
Unhandled Rejection at: Promise {
<rejected> Error: Could not find the node's symbol.

这是我的 app-routing.module.ts

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { AuthRestrictGuard, AuthGuard, AppUserLoadedGuard, RoleGuard } 
from '@project-core/auth';

const routes: Routes = [
{
    path: '',
    loadChildren: () => 
import('./public/landing/landing.module').then(module => 
module.LandingModule),
    canActivate: [AuthRestrictGuard]
},
{
    path: 'jumping-page',
    loadChildren: () => import('@project-business/core/project-jumping- 
page/project-jumping-page.module')
        .then(module => module.ProjectJumpingPageModule),
    canActivate: [AuthGuard, AppUserLoadedGuard, RoleGuard],
    data: {
        roles: [RolesEnum.Admin, RolesEnum.MemberAdmin, 
RolesEnum.MemberUser]
    }
},
{
    path: 'profile',
    loadChildren: () => import('@project-business/core/project- 
profile/project-profile.module')
        .then(module => module.ProjectProfileModule),
    canActivate: [AuthGuard, AppUserLoadedGuard]
},
{
    path: 'errors',
    loadChildren: () => import('./core/errors/errors.module').then(module 
=> module.ErrorsModule)
},
{
    path: '**',
    redirectTo: 'errors',
    pathMatch: 'full'
},
];

@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }

运气好的话?

标签: angularpromisees6-promisecompodoc

解决方案


我们已经在使用import(...).then(...)Promise。问题发生了。

{
    path: '/test',
    loadChildren: () => import('./routes/test').then(mod => mod.TestModule),
    ...
},

Compodoc:Compodoc 使用的 1.1.11 TypeScript 版本:当前项目的 2.9.1 TypeScript 版本:4.1.5 Node.js 版本:v14.15.3 提示:它与 --disableRoutesGraph 标志一起使用


推荐阅读