@abarchibody/storage 中文文档教程

发布于 4年前 浏览 18 更新于 3年前

storage 用于读取、写入localstorage。

安装

$ npm i @abarchibody/storage

用法

const data = [1, 2, 3, 4]

import storage from '@abarchibody/storage'

Write to localstorage

storage.set('data', data);

OR

storage.write('data', data);

Read to localstorage

const myData = storage.get('data')

OR

const myData = storage.read('data')
console.log(myData)

// [1, 2, 3, 4]

Delete data to localstorage

storage.remove('data');

OR

storage.del('data');

storage is used to read, write to the localstorage.

to install

$ npm i @abarchibody/storage

Usage

const data = [1, 2, 3, 4]

import storage from '@abarchibody/storage'

Write to localstorage

storage.set('data', data);

OR

storage.write('data', data);

Read to localstorage

const myData = storage.get('data')

OR

const myData = storage.read('data')
console.log(myData)

// [1, 2, 3, 4]

Delete data to localstorage

storage.remove('data');

OR

storage.del('data');
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文