Angular 9在app(默认)文件夹中的特定文件夹中创建组件

问题描述 投票:0回答:1

我有src / app / pages文件夹,我想在此文件夹中创建新组件。我已经尝试过这个

ng g component pages/tasdiq

但收到此错误“有多个模块匹配。请使用skip-import选项跳过将组件导入到最近的模块中。”

我有app.module.ts和app-routing.module.ts模块(我正在编辑现有项目)

我该如何解决

module components angular9
1个回答
0
投票

我找到了答案!

我也只需要指定模块

ng g component {folder-name-inside-of-app-folder}/{component-name} --module={existing-module's-name}

以我为例ng g component pages/tasdiq --module=app-routing.module

有效:)

© www.soinside.com 2019 - 2024. All rights reserved.