1.1.5 • Published 4 years ago

ciel-localstorage v1.1.5

Weekly downloads
2
License
MIT
Repository
-
Last release
4 years ago

ciel-localstorage


author: cielzhang | Email:727325409@qq.com

用于简化浏览器LocalStorage的操作

Installation

Inside your project folder do:

npm install --save ciel-localstorage

Import

import get

通过解构的方式,仅仅引入get单个方法

import { get } from 'ciel-localstorage';

or import all:

import localData from 'ciel-localstorage';

API

  • set()
  • get()
  • remove()

set(key, value, expireTime)

向LocalStorage存储数据,支持Object类型。 expireTime是有效时间,以秒为单位。

get(key)

获取LocalStorage存储数据,若不存在或已过期则返回空字符串。 手动调用该方法将导致过期数据直接被删除。

remove(key)

删除LocalStorage存储的数据。

1.1.5

4 years ago

1.1.4

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago