promisify-wxmp-util
v2.0.1
Published
Promisify Wexin Mini Program Util
Downloads
1
Readme
promisify-wxmp-util
Promisify Wexin Mini Program Util Promise 化调用微信小程序 API 的工具
Description
使用 Promise 的方式调用微信小程序的 API(依赖 Proxy 实现懒初始化)
Installation
$ npm install promisify-wxmp-util --save
Usage
import pwxmpu from "promisify-wxmp-util";
pwxmpu
.getStorage({
key: "name",
})
.then((res) => {
console.log(res);
});