我是靠谱客的博主 无奈白羊,最近开发中收集的这篇文章主要介绍数据缓存服务StorageService封装及使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

import { Injectable } from '@angular/core';

@Injectable({
  providedIn: 'root'
})
export class StorageService {

  constructor() { }

  get(key:any){
    return JSON.parse(localStorage.getItem(key)||'0')
  }
  set(key:any,value:any){
    localStorage.setItem(key,JSON.stringify(value));
  }
  remove(key:any){
    localStorage.removeItem(key)
  }
}

使用方法:
search.components.ts中,数据缓存到searchlist中。使用生命周期函数,检查每次刷新页面时,如果searchlist存在则从缓存中拿取数据,删除也是。

import { Component, OnInit } from '@angular/core';
//引入服务
import { StorageService } from 'src/app/services/storage.service';
//实例化服务
// var storage = new StorageService();

@Component({
  selector: 'app-search',
  templateUrl: './search.component.html',
  styleUrls: ['./search.component.less']
})
export class SearchComponent implements OnInit {

  constructor(public storage:StorageService) {
    //使用服务
    // storage.get();
    // this.storage.get(key);
   }
  public content:string='';
  public historyList:any[] = []; 
  ngOnInit(): void {
    //生命周期函数,如果searchlist存在则从缓存中拿取数据
    var searchlist = this.storage.get('searchlist');
    if(searchlist){
      this.historyList=searchlist;
    }
  }
  //列表中添加历史记录
  doSearch(){
    if(this.historyList.indexOf(this.content)==-1){
      this.historyList.push(this.content);
      this.storage.set('searchlist',this.historyList);

    }
    this.content = '';
    console.log(this.historyList);
  }
  //删除指定记录
  deleteHistory(key:any){
    alert(key);
    this.historyList.splice(key,1);
    this.storage.set('searchlist',this.historyList);
  }
  

}

可以在检查–Application–localStorage中查看到searchlist
在这里插入图片描述

最后

以上就是无奈白羊为你收集整理的数据缓存服务StorageService封装及使用的全部内容,希望文章能够帮你解决数据缓存服务StorageService封装及使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部