文件名称:saber-storage:移动端本地存储模块
文件大小:13KB
文件格式:ZIP
更新时间:2024-06-18 01:08:02
JavaScript
saber-storage 移动端本地存储模块,提供 memory、session 与 local 三种存储模式,并且兼容 node 环境 Installation 通过 引入模块: $ edp import saber-storage 或者在 node 环境下使用 npm 引入模块: $ npm install saber-storage --save Usage var Storage = require('saber-storage'); // 使用localStorage进行本地存储 var storage = new Storage('local'); // 存入 storage.setItem('string', 'this is a string'); storage.setItem('object', {a: 1}); // {a: 1} storage.getItem(
【文件预览】:
saber-storage-master
----edp-build-config.js(1KB)
----.gitignore(74B)
----package.json(1KB)
----main.js(2KB)
----src()
--------main.js(2KB)
--------Storage.js(3KB)
--------memoryStorage.js(769B)
----History.md(391B)
----.travis.yml(45B)
----LICENSE(1KB)
----README.md(2KB)
----lib()
--------Storage.js(2KB)
--------memoryStorage.js(564B)
----bower.json(741B)
----test()
--------runner.html(1KB)
--------run-jasmine.js(1KB)
--------spec()
--------runSpec.js(222B)
----.editorconfig(312B)