Rumah > Artikel > hujung hadapan web > 详解Angular中的NgModule(模块)
本篇文章带大家详细了解一下Angular中的NgModule(模块)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。
相关教程推荐:《angular教程》
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import {HttpClient, HttpClientModule} from '@angular/common/http'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent, ], imports: [ BrowserModule, FormsModule, HttpClientModule, ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }
declarations
声明模块有什么东西, 只能声明组件、 指令和管道。
imports
导入表, 声明了要让应用运转所依赖的一些模块。
providers
声明模块中提供了哪些服务, 只能声明服务。
bootstrap
声明模块的主组件是什么。 只有根模块才应该设置这个 bootstrap 属性。
更多编程相关知识,请访问:编程教学!!
Atas ialah kandungan terperinci 详解Angular中的NgModule(模块). Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!