我收到错误:找不到模块
'src/app/settings/settings.module'.
at eval (eval at ./src/$$_lazy_route_resource lazy recursive当尝试从我的api添加惰性加载模块时。让我很难调试的是,当我在StackBlitz上尝试这个时,它似乎工作得很好。这里有一个指向我的项目的链接:然而,当我将项目移出StackBlitz并在我的pc上重新创建它时,我会得到错误。
值得一提的是,当我发布来自下面API的路由时,您将看到它们在“app”之前包含了“src”,用于延迟加载模块(settings.module)--这只是因为StackBlitz有一个嵌套的'src‘文件夹。此外,如果您试图导出我的项目,则需要将目录“src”添加到角-cli.json文件的“main”属性中。我不知道这会如何影响模块。我已经在这里呆了好几天了,任何帮助都是非常感谢的。
我正在使用这样的服务:
import {
Injectable,
Compiler,
NgModuleFactory,
NgModuleFactoryLoader,
Injector,
NgModuleRef,
} from '@angular/core';
import { Router } from '@angular/router';
import { ApiRoute } from '../models/apiroutes.interface';
@Injectable()
export class ModuleFactoryLoader {
private moduleRef: NgModuleRef<any>;
constructor(
private loader: NgModuleFactoryLoader,
private injector: Injector,
private router: Router,
) {
}
load(apiRoute: ApiRoute): void {
this.loader.load(apiRoute.loadChildren).then(moduleFactory => {
this.moduleRef = moduleFactory.create(this.injector).instance;
this.router.config.unshift({
path: apiRoute.path,
loadChildren: apiRoute.loadChildren,
});
console.debug('moduleRef', this.moduleRef);
}).catch(err => {
console.error('error loading module', err);
});
}
}来自我的(模拟) api的路线是:
[
{
path: "test",
component: "TestComponent",
data: {
icon: "check"
}
},
{
path: "settings",
loadChildren: "src/app/settings/settings.module#SettingsModule"
},
{
path: "home",
component: "HomeComponent",
data: {
icon: "home"
}
},
{
path: "self-service",
component: "RouteSelfServiceComponent",
data: {
icon: "build"
}
}
]在我的个人电脑上运行角的版本是:
角CLI: 6.0.8节点:8.9.1OS: win32 x64角: 软件包版本@角-devkit/architect 0.6.8 @角-devkit/核心0.6.8 @角-devkit/示意图0.6.8 @示意图/角0.6。8@示意图/更新0.6.8 rxjs 6.2.1打字本2.7.2
package.json:
{
"name": "angular-template",
"description": "",
"homepage": "https://stackblitz.com/edit/angular-dynamic-components-and-routes",
"dependencies": {
"@angular/animations": "6.0.5",
"@angular/cdk": "6.3.0",
"@angular/common": "6.0.0",
"@angular/compiler": "6.0.0",
"@angular/core": "6.0.0",
"@angular/forms": "6.0.0",
"@angular/http": "^5.0.0",
"@angular/material": "6.3.0",
"@angular/platform-browser": "6.0.0",
"@angular/platform-browser-dynamic": "6.0.0",
"@angular/router": "6.0.0",
"core-js": "2.5.5",
"file-system": "2.2.2",
"fs": "0.0.2",
"path": "0.12.7",
"rxjs": "6.1.0",
"util": "0.11.0",
"zone.js": "0.8.26"
},
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.8",
"@angular/cli": "^6.0.8",
"@angular/compiler-cli": "^1.7.4",
"@angular/language-service": "^5.0.0",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"angular-router-loader": "^0.8.5",
"codelyzer": "~3.0.1",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"karma": "~1.7.0",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.1.2",
"ts-node": "~3.0.4",
"tslint": "~5.3.2",
"typescript": "~2.4.2"
}
}以下是所产生的错误(错误仅限于本地的错误)。(StackBlitz没有问题):

发布于 2018-07-19 14:10:39
我设法使它在当地发挥作用,这就是我所做的:
ng new myFirstApp然后,我在新的and 6项目中复制了app文件夹,并将ang-cli.json重命名为angular.json。
就像在路由器-loader.service.ts中一样,我无法使它工作--我复制了内容的API_ENDPOINTS
of([
{
"path": "test",
"component": "TestComponent",
"data": {
"icon": "check"
}
},
{
"path": "settings",
"loadChildren": "src/app/settings/settings.module#SettingsModule"
},
{
"path": "home",
"component": "HomeComponent",
"data": {
"icon": "home"
}
},
{
"path": "self-service",
"component": "RouteSelfServiceComponent",
"data": {
"icon": "build"
}
}
])
.toPromise()...我把它推到github上
发布于 2018-07-13 16:22:04
您不能使用角CLI来完成您想要实现的任务,因为角CLI构建不会编译没有引用的模块。
在构建项目时,不存在与SettingsModule关联的JS块,除非我们在运行时之前定义了路由。
我已经找到了一个演示项目,它可以执行您尝试做的这里,但是它不使用角度CLI构建,而是使用tsc && concurrently \"tsc -w\" \"http-server . -c-1 \"。
我不知道StackBlitz使用哪个构建管道,但这肯定不是角CLI。
您只可以尝试类型记录编译,但它不能解决AOT产品生成的问题,您将被迫使用自己的自定义构建。
https://stackoverflow.com/questions/51270428
复制相似问题