02 2022 档案
摘要:在Angular 中转译 转移: 将代码从一种高级语言转换为另一种高级语言。 编译:将代码从高级语言转换为机器级语言 每个 Angular 项目都有一个名为tsconfig.json的文件,其中包含将 .js 文件转换为 .ts 文件的设置。 tsconfig.json官网地址 JIT和AOT编译的
阅读全文
摘要:声明 declarations: [AppComponent] 组件、管道、指令 引入模块 imports: [BrowserModule, AppRoutingModule] 其他模块 服务 providers: [UserService] 此模块将生成的根组件 例子: bootstrap: [A
阅读全文