@ahonn/wx-promisify
v1.0.4
Published
Wechat mini program promisify wx object
Downloads
7
Readme
wx-promisify
Wechat mini program promisify wx object
安装
$ npm install @ahonn/wx-promisify --save
使用
所有需要 success 与 fail 参数的微信小程序接口,都能够以 Promise 的方式调用
const wx = require('/path/to/wx-promisify/wx')
// 登录
wx.login().then(res => {
// code
})
// 发送请求
wx.request({
// options
}).then(res => {
// code
});