這篇文章給大家介紹怎么在Angular5中實現(xiàn)狀態(tài)管理,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
十年的新賓網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。全網(wǎng)整合營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整新賓建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)從事“新賓網(wǎng)站設(shè)計”,“新賓網(wǎng)站推廣”以來,每個客戶項目都認(rèn)真落實執(zhí)行。
先定義狀態(tài)管理對象,需要存什么數(shù)據(jù),自己定義
export class UserInfo { public userInfo: boolean; constructor(){ this.userInfo = true; //設(shè)置全局的控制導(dǎo)航是否顯示 } }
然后定義Service,如下
import { Injectable} from '@angular/core'; import { Headers, Http } from '@angular/http'; import { UserInfo } from './user-info.model'; @Injectable() //注入服務(wù) export class ListsService{ private userInfo; constructor(private http: Http) { this.userInfo = new UserInfo(); } //設(shè)置路由顯示的狀態(tài) setUserInfo(v) { this.userInfo.userInfo = v; } //獲取路由顯示的狀態(tài) getUserInfo() { return this.userInfo; } }
配置了service一定要在ngmodule中導(dǎo)入,這樣才能在此module中有效
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { AppComponent } from './app.component'; import { AppRouterModule } from './router.module'; import { ViewComponent } from './view.component'; import { ListComponent } from './list.component'; import { OtherComponent } from './other.component'; import { DetailComponent } from './detail.component'; import { ListsService } from './app.service'; @NgModule({ declarations: [ AppComponent, DetailComponent, ViewComponent, ListComponent, OtherComponent ], imports: [ BrowserModule, FormsModule , AppRouterModule, HttpModule ], providers: [ListsService], bootstrap: [AppComponent] }) export class AppModule { }
然后就可以在component中使用了
@Component({ selector: 'app-root', template: ` `, styles:[` .lists a{ padding:0 10px; } .active{ color: #f60; } `] }) export class AppComponent { private userInfo; constructor(private listsService: ListsService) { this.userInfo= this.listsService.getUserInfo(); } }
在詳情頁中通過改變狀態(tài)來改變頁面
@Component({ selector: 'app-detail', template: `詳情頁{{id}}`, }) export class DetailComponent { private userInfo; constructor( private route: ActivatedRoute, private location: Location, private listsService: ListsService ) { this.userInfo= this.listsService.setUserInfo(false); } goBack(): void { this.location.back(); } //組件銷毀時執(zhí)行 ngOnDestroy():void{ this.userInfo= this.listsService.setUserInfo(true); } }
關(guān)于怎么在Angular5中實現(xiàn)狀態(tài)管理就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。