An open API service indexing awesome lists of open source software.

https://github.com/cytle/wxapp-storage


https://github.com/cytle/wxapp-storage

Last synced: about 1 year ago
JSON representation

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 }
});
```