本文介绍了创建没有文件夹的组件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要创建一个没有文件夹的组件.我正在使用Angular-Cli命令ng g c testing
创建组件.但是,该命令为新创建的组件创建了一个文件夹包装.
I need to create a component without the folder. I am using Angular-Cli command ng g c testing
to create the component. But, the command creates an folder wrapper for the newly created component.
推荐答案
您可以使用--flat
标志.
ng g c test --flat
有关更多信息,请遵循以下链接
For more information follow this link
为true时,将在当前项目的顶层创建新文件.
When true creates the new files at the top level of the current project.
默认值:false
这篇关于创建没有文件夹的组件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!