1.0.2 • Published 6 years ago

wx-promisfy v1.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

使用方法

// 引入方法
import { promisifys, toPromisify } from './promisy.js'

// 以request举例,其他同理
promisifys.request({url: 'xxx'})
  .then((res) => {
    // TODO somethings
  }).catch((err) => {
    // TODO somethings
  })


// 亦可以使用工厂方法构造自己的promise

const func = toPromisify(wx.xxx)

func(option)
  .then((res) => {
    // TODO somethings
  }).catch((err) => {
    // TODO somethings
  })
1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago