|
Angularjs4.0 app.module.ts里面引入创建的服务有哪些呢?详情如下:
首先创建服务
- ng g service 服务名称
- 如:
- ng g service storage
复制代码
1.app.module.ts 里面引入创建的服务
- import { StorageService } from './services/storage.service';
复制代码
2. NgModule 里面的providers 里面依赖注入服务
- @NgModule({
- declarations: [
- AppComponent,
- HeaderComponent,
- FooterComponent,
- NewsComponent,
- TodolistComponent
- ],
- imports: [
- BrowserModule,
- FormsModule
- ],
- providers: [StorageService],
- bootstrap: [AppComponent]
- })
- export class AppModule { }
复制代码
接下来就是使用服务:
[url=http://bbs.phonegap100.com/thread-4282-1-1.html]
http://bbs.phonegap100.com/thread-4282-1-1.html
[/url]
|
|