这是我的 Angular 项目的目录结构。Angular 应用程序可以通过许多不同类型的组件变得庞大。组织 Angular 应用程序的最佳实践是什么?
-app
-layout
-home-layout
-header
-menu
-content
-detail-page
-left-side
-left-side.component.html
-left-side.component.ts
-right-side
-detail-page.component.html
-detail-page.component.ts
-footer
-pipes
-widget-features
-material-module
-services
-models
有了实际的结构,站点地图组织就很清晰了,我可以很方便的找到不同的页面内容。
但是要获得模块化架构,我想重新组织结构。
请给我一些建议好吗?