幽梦林子 发表于 2017-8-11 11:01:38

Angularjs4.0 app.module.ts里面引入创建的服务

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: ,
bootstrap:
})
export class AppModule { }

接下来就是使用服务:
http://bbs.phonegap100.com/thread-4282-1-1.html]
http://bbs.phonegap100.com/thread-4282-1-1.html






页: [1]
查看完整版本: Angularjs4.0 app.module.ts里面引入创建的服务