微信小程序 - cb回调(typeof cb == "function" && cb(obj);)

Posted Sunsin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序 - cb回调(typeof cb == "function" && cb(obj);)相关的知识,希望对你有一定的参考价值。

typeof cb == "function" && cb(obj)

 

但凡用了Promise,这种方式就可以抛弃了.

Page({
  data: {},
  onLoad() {

    request(‘https://api.it120.cc/jy02149522/banner/list‘, {
      type: 0
    }, function(obj) {
      console.log(‘请求到的数据:‘, obj)
    })
  }
})



// request请求封装
const request = (url, data, cb) => (
  wx.request({
    url,
    data,
    method: ‘GET‘,
    header: {
      ‘content-type‘: ‘application/x-www-form-urlencoded‘
    },
    dataType: ‘json‘,
    responseType: ‘text‘,
    success(res) {
      //判断cb是不是function,并且执行这行这个function
      res.data.code == 0 ? typeof cb == "function" && cb(res.data) : typeof error === ‘function‘ && error()
    },
    fail() {
      typeof error === ‘function‘ && error()
    },
    complete(res) {
      // res.data.code != 0 ? typeof cb == "function" && cb(res.data) : typeof error === ‘function‘ && error()
    }
  })



)

 

各位看官,自个理会.

以上是关于微信小程序 - cb回调(typeof cb == "function" && cb(obj);)的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序 - 上传头像

微信小程序 request请求封装

微信小程序--Tab栏切换的快速实现

JS中回调函数的简单用法

小程序的学习王战

如何使用express在回调函数之间传递值? [复制]