美文网首页
使用proxy 改写小程序接口为 promise

使用proxy 改写小程序接口为 promise

作者: copyLeft | 来源:发表于2019-10-08 18:10 被阅读0次
const startsWith = (prefix, str) => str.startsWith(prefix)
const endsWith = (prefix, str) => str.endsWith(prefix)

const log = prefix => msg => console.log(`${prefix}: ${msg}`)

const _wx = new Proxy({}, {

  get(target, key, receiver){

    if(startsWith('on', key) || endsWith('Sync', key)  ){
      return wx[key]
    }

    return (args) => new Promise((reslove, reject) =>{
        wx[key](Object.assign({
          success: reslove,
          fail: reject
        }, args))
      
    })
  },

})


_wx.setStorage({
  key: 'token',
  data: '1111'
}).then(log('set success')).finally(() =>  _wx.removeStorageSync('token') )


_wx.showToast({
  title: 'msg',
  icon: 'success'
}).then(log('success')).catch(log('error')).finally(log('end'))



相关文章

网友评论

      本文标题:使用proxy 改写小程序接口为 promise

      本文链接:https://www.haomeiwen.com/subject/facipctx.html