当前位置: 代码迷 >> 综合 >> angular 如何启动项目
  详细解决方案

angular 如何启动项目

热度:57   发布时间:2023-09-18 11:22:34.0

一: 文字说明

  1. 当你在命令行中输入 ng serve 后
  2. ng 会根据 angular-cli.json 中的 main元素 找到 应用入口文件main.ts
  3. main.ts 再加载 根模块AppModule
  4. AppModule 启动Angular模块(@ngModule)
  5. @ngModule 为 AppModule 添加元数据,并指定了顶层组件AppComponent
  6. AppComponent 中我们就可以为所欲为了