gpt4 book ai didi

Angular 库路由模块在应用程序中导入时不起作用

转载 作者:行者123 更新时间:2023-12-02 15:47:35 24 4
gpt4 key购买 nike

我需要帮助解决我无法解决的问题。我正在研究 Angular 7 库,以便向我的应用程序添加模块化,但在库中定义的模块路由在将其安装到应用程序中时似乎不起作用。

我已经在 github 上创建了项目来重现问题:
库测试foo-lib
外部申请foo-tester

在每个自述文件中,我都描述了如何重现此问题。

我创建了一个示例库(foo-lib),其路由模块定义了子路由,然后我在同一工作区的简单应用程序中构建并测试了它。一切工作正常,并且库路由已正确添加到测试应用程序中。在下一步中,我导出构建的库,并通过 npm link 命令将其包含在另一个工作区的另一个应用程序示例中,并在此应用程序上运行 ngserve 命令。使用此配置,如果尝试实现库路由路径,我会收到错误,就好像它们没有添加到主路由模块中一样。

Foo-lib-routing.module.ts

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';

import { MainComponent } from './components/main/main.component';
import { NewFooCmpComponent } from './components/new-foo-cmp/new-foo-cmp.component';

const UP_ROUTES: Routes = [
{ path: 'main_path', component: MainComponent,
children: [
{ path: 'child', component: NewFooCmpComponent }
]
}
];

@NgModule({
imports: [RouterModule.forChild(UP_ROUTES)],
exports: [RouterModule]
})

export class FooLibRoutingModule { }

Foo-lib.module.ts


import { NgModule } from '@angular/core';

import { FooLibRoutingModule } from './foo-lib-routing.module';

import { MainComponent } from './components/main/main.component';
import { FooLibComponent } from './foo-lib.component';
import { NewFooCmpComponent } from './components/new-foo-cmp/new-foo-cmp.component';

@NgModule({
declarations: [
MainComponent,
FooLibComponent,
NewFooCmpComponent],
imports: [
FooLibRoutingModule
],
exports: [
FooLibComponent,
NewFooCmpComponent]
})
export class FooLibModule { }

app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';


import { RoutingModule } from './routing.module';

import { AppComponent } from './app.component';
import { WelcomeComponent } from './components/welcome/welcome.component';
import { NotFoundComponent } from './components/not-found/not-found.component';

import { FooLibModule } from '@foo/lib';

@NgModule({
declarations: [
AppComponent,
WelcomeComponent,
NotFoundComponent
],
imports: [
BrowserModule,
RoutingModule,
FooLibModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }

路由.module.ts


import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { WelcomeComponent } from './components/welcome/welcome.component';
import { NotFoundComponent } from './components/not-found/not-found.component';

const APP_ROUTES: Routes = [
{ path: 'welcome', component: WelcomeComponent },
{ path: 'notfound', component: NotFoundComponent },
{ path: '', redirectTo: '/welcome', pathMatch: 'full' },
];

/**
* Main client routing configuration module
*/
@NgModule({
imports: [ RouterModule.forRoot(APP_ROUTES) ],
exports: [ RouterModule ]
})

export class RoutingModule {}


尝试导航到库路线时控制台中显示错误

core.js:15714 ERROR Error: Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'main_path/child'
Error: Cannot match any routes. URL Segment: 'main_path/child'
at ApplyRedirects.push../node_modules/@angular/router/fesm5/router.js.ApplyRedirects.noMatchError (router.js:2469)

最佳答案

最后我找到了一个解决方案。我在下面描述它以帮助社区。在这种情况下,我们需要在构建部分添加“preserveSymlinks”:true选项到主应用程序Angular.json,即通过npm link命令导入外部库的应用程序。

"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"preserveSymlinks": true,

制作人员 filipesilva on angular-cli issues

希望这可以帮助将来的其他人。

谢谢

关于Angular 库路由模块在应用程序中导入时不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54317993/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com