angular6自定義服務service
文章參考
指令建立service
ng g service storageService
service說明
service 是一個單例,如果放在根路由下,就是在所有的元件都是共享的,因此可以利用service來傳遞和共享資料。
案例
自定義服務內容
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class StorageService {
public serviceName: string = "StorageService";
constructor() {
}
}
在NgModule中providers宣告
/**
* 告訴angular 如何組裝應用
*/
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpClientModule } from '@angular/common/http';
import { HbModuleModule } from '../moduleHb/hb-module/hb-module.module'
import { AppComponent } from './app.component';
import { HeaderComponent } from './page/header/header.component';
import { NewsComponent } from './page/news/news.component';
import {StorageService} from './page/service/storage.service'
import { AppRoutingModule } from './router/app-routing.module';
import { HttpdemoComponent } from './page/httpdemo/httpdemo.component';
import { StrLengthPipe } from './pipeCustomer/str-length.pipe';
import { HbFontcolorDirective } from './directiveCustomer/hb-fontcolor.directive';
import { HbBackgroundDirective } from './directiveCustomer/hb-background.directive';
//@NgModule 裝飾器將AppModule標記為Angular 模組類(也叫做 NgModule類)
// @NgModule 接收一個後設資料物件,告訴Angular 如何編譯和啟動應用
@NgModule({
// 該模組的 declarations 陣列告訴 Angular 哪些元件屬於該模組
// 該應用所擁有的元件——元件、管道、指令
declarations: [
AppComponent,
HeaderComponent,
NewsComponent,
HttpdemoComponent,
StrLengthPipe,
HbFontcolorDirective,
HbBackgroundDirective
],
// 當前專案依賴哪些模組
imports: [
BrowserModule,
HttpClientModule,
// 如果要引入雙向繫結,則需要引入FormModule
FormsModule,
AppRoutingModule,
// 自定義模組
HbModuleModule
],
// 各種服務提供商——定義服務
providers: [
StorageService
],
// 預設啟動哪個元件——根元件
bootstrap: [AppComponent]
})
// 根模組不需要匯出任何東西,因為其他元件不需要匯入根模組,但是一定要寫
export class AppModule { }
使用service
在元件的構造方法中直接新增引數和型別,就能夠依賴注入到當前元件中
import { Component, OnInit } from '@angular/core';
import {StorageService} from '../service/storage.service';
@Component({
selector: 'app-news',
templateUrl: './news.component.html',
styleUrls: ['./news.component.css']
})
export class NewsComponent implements OnInit {
public message: string;
public username: any;
public newsList = [];
public storageService: StorageService = null;
// public storageService: StorageService = new StorageService();
// 構造方法中新增service型別,就是依賴注入
constructor(storageService: StorageService) {
this.username = "username";
this.message = "我是訊息屬性";
this.storageService = storageService;
// console.dir(this.storageService);
console.dir(storageService);
}
// 新增新新聞
addData(){
console.log("addData");
this.newsList.push(this.username);
}
// 刪除資料
delItem(index){
alert(index);
this.newsList.splice(index,1);
}
// 獲取事件
keyAction(e){
console.dir(e);
}
ngOnInit() {
}
updateService(){
this.storageService.serviceName = "liumei-huanghaili";
}
}
相關文章
- Angular6學習筆記8: 服務(Service)(1)Angular筆記
- Angular6 服務端渲染Angular服務端
- Laravel框架:通過自定義命令建立service服務層初體驗Laravel框架
- anaular中的自定義服務
- CentOS7自定義服務CentOS
- CloudFoundry增加自定義serviceCloud
- Windows如何安裝自定義服務Windows
- Android Service 服務(一)—— ServiceAndroid
- CentOS7使用systemctl新增自定義服務CentOS
- Laravel自定義Make命令生成Service類Laravel
- Service或自定義物件使用LiveData物件LiveData
- 第一講:自定義服務整合原理講解
- Laravel Exception結合自定義Log服務的使用LaravelException
- 服務網格 Service Mesh
- 【Azure 應用服務】App Service中,為Java應用配置自定義錯誤頁面,禁用DELETE, PUT方法APPJavadelete
- springcloud之自定義簡易消費服務元件SpringGCCloud元件
- Oracle RAC的自定義service自啟動Oracle
- 安卓開發之服務Service安卓
- k8s Service 服務K8S
- Asp.Net Core入門之自定義服務註冊ASP.NET
- 騰訊 Tars-Go 服務獲取自定義模版(配置)值Go
- 帶你梳理Jetty自定義ProxyServlet實現反向代理服務JettyServlet
- 【Azure 應用服務】Azure App Service 自帶 FTP服務APPFTP
- 【應用服務 App Service】App Service 新手資料包APP
- angular中的$http服務(service)解析AngularHTTP
- Windows Service外掛服務開源Windows
- Android Service 服務(二)—— BroadcastReceiverAndroidAST
- Go 武林外傳 - 解鎖 Micro 新姿勢之自定義服務Go
- 使用ArcEngine開發自定義Tool併發布為GP服務
- Vue 3深度探索:自定義渲染器與服務端渲染Vue服務端
- 使用docker執行nginx服務,掛載自定義配置檔案DockerNginx
- Silverlight新增服務引用Service Reference, 出現“自定義工具錯誤,無法生成服務引用”錯誤的解決辦法
- .net core自定義高效能的Web API服務閘道器WebAPI
- OAuth2.0實戰:認證、資源服務異常自定義!OAuth
- Eureka:擴充套件ClientFilter實現服務註冊自定義過濾套件clientFilter
- 物件儲存服務(Object Storage Service,OBS)物件Object
- 服務網格service mesh 之 Linkerd
- 新增叢集資料庫服務service資料庫