https://github.com/cytle/wxapp-storage
https://github.com/cytle/wxapp-storage
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/cytle/wxapp-storage
- Owner: cytle
- Created: 2018-01-14T06:47:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-14T06:50:46.000Z (over 8 years ago)
- Last Synced: 2025-02-25T20:07:26.705Z (over 1 year ago)
- Language: JavaScript
- Size: 41 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wxapp-storage
小程序请求
## Usage
```js
import storage from 'wxapp-storage';
// 仅为示例,并非真实的接口地址
storage.set('key', { a: 1 })
.then(() => {
console.log(storage.get('key')); // { a: 1 }
});
```