在编程项目中,我们常需要用到回调的做法来实现部分功能,那么在js中我们有哪些方法来实现回调的?
方法1:回调函数
首先要定义这个函数,然后才能利用回调函数来调用!
login: function (fn) {
var app = getApp()
wx.login({
success: res => {
let code = res.code;
wx.getSetting({
success: res => {
if (res.authSetting[‘scope.userInfo‘]) {
wx.getUserInfo({
success: res => {
console.log(res)
var inviteUid = wx.getStorageSync(‘inviteUid‘)
let dataMap = new Map();
dataMap.set(‘from‘, 3);
dataMap.set(‘superiorId‘, inviteUid);
dataMap.set(‘code‘, code);
dataMap.set(‘encryptedData‘, res.encryptedData);
dataMap.set(‘iv‘, res.iv);
dataMap.set(‘scene‘, 6);
app.get_sign(dataMap, function (...reo) {
let [time, version, client, sign] = reo;
wx.request({
url: app.globalData.url + ‘/api3_1/WxLogin/login‘,
data: {
time,
version,
client,
sign,
from: 3,
superiorId: inviteUid,
code,
encryptedData: res.encryptedData,
iv: res.iv,
scene: 6
},
method: ‘POST‘,
header: {
‘content-type‘: ‘application/x-www-form-urlencoded‘
},
success: function (res) {
console.log(res)
var identity_id = res.data.data.identity_id
wx.setStorageSync(‘identity_id‘, identity_id)
if (res) {
fn(res)
}
}
})
})
}
})
}
}
})
}
})
},
调用
app.login((res)=>{
})
方法2:es6的 promise
同样,我们先定义一个带有promise的函数
login: function (fn) {
var app = getApp()
return new Promise((resolve, reject) => {
wx.login({
success: res => {
let code = res.code;
wx.getSetting({
success: res => {
if (res.authSetting[‘scope.userInfo‘]) {
wx.getUserInfo({
success: res => {
console.log(res)
var inviteUid = wx.getStorageSync(‘inviteUid‘)
let dataMap = new Map();
dataMap.set(‘from‘, 3);
dataMap.set(‘superiorId‘, inviteUid);
dataMap.set(‘code‘, code);
dataMap.set(‘encryptedData‘, res.encryptedData);
dataMap.set(‘iv‘, res.iv);
dataMap.set(‘scene‘, 6);
app.get_sign(dataMap, function (...reo) {
let [time, version, client, sign] = reo;
wx.request({
url: app.globalData.url + ‘/api3_1/WxLogin/login‘,
data: {
time,
version,
client,
sign,
from: 3,
superiorId: inviteUid,
code,
encryptedData: res.encryptedData,
iv: res.iv,
scene: 6
},
method: ‘POST‘,
header: {
‘content-type‘: ‘application/x-www-form-urlencoded‘
},
success: function (res) {
console.log(res)
var identity_id = res.data.data.identity_id
wx.setStorageSync(‘identity_id‘, identity_id)
if (res) {
resolve(res)
}
}
})
var userInfo = res.userInfo
wx.setStorageSync(‘userInfo‘, userInfo)
})
}
})
}
}
})
}
})
})
},
来来来,这么调用,这里主要是最后通过.then来进行回调的写法
app.login().then((res) => {
console.log(res);
})
方法3:es6中async / await
同样,还是先定义函数,这个和方法2其实是一样的定义方法,还是用promise来进行定义一个返回,只是调用这个函数的时候不一样。
login: function (fn) {
var app = getApp()
return new Promise((resolve, reject) => {
wx.login({
success: res => {
let code = res.code;
wx.getSetting({
success: res => {
if (res.authSetting[‘scope.userInfo‘]) {
wx.getUserInfo({
success: res => {
console.log(res)
var inviteUid = wx.getStorageSync(‘inviteUid‘)
let dataMap = new Map();
dataMap.set(‘from‘, 3);
dataMap.set(‘superiorId‘, inviteUid);
dataMap.set(‘code‘, code);
dataMap.set(‘encryptedData‘, res.encryptedData);
dataMap.set(‘iv‘, res.iv);
dataMap.set(‘scene‘, 6);
app.get_sign(dataMap, function (...reo) {
let [time, version, client, sign] = reo;
wx.request({
url: app.globalData.url + ‘/api3_1/WxLogin/login‘,
data: {
time,
version,
client,
sign,
from: 3,
superiorId: inviteUid,
code,
encryptedData: res.encryptedData,
iv: res.iv,
scene: 6
},
method: ‘POST‘,
header: {
‘content-type‘: ‘application/x-www-form-urlencoded‘
},
success: function (res) {
console.log(res)
var identity_id = res.data.data.identity_id
wx.setStorageSync(‘identity_id‘, identity_id)
if (res) {
resolve(res)
}
}
})
var userInfo = res.userInfo
wx.setStorageSync(‘userInfo‘, userInfo)
})
}
})
}
}
})
}
})
})
},
咱再来进行调用,这个理论上,你要自己在定义一个新的函数,然后才能用async/await ,可以理解为 await 的等一等,然后就能拿到app.login的返回值,这个方法,在多重回调中就能发挥很大的作用。
async onGotUserInfo(e) {
let res = await app.login();
console.log(res);
}
小结:
如果我们只有一次回调,我们可以用回调函数,也可以用promise,然后用.then来获取值。如果有多次回掉,那么我们推荐用方法3,这个终极的方案来进行获取回调的值。
我理解的 JavaScript 函数式编程,都认为属于函数式编程的范畴,只要他们是以函数作为主要载体的。
给你的代码增加一点点函数式编程的特性,最近我对函数式编程非常感兴趣。这个概念让我着迷:应用数学来增强抽象性和强制纯粹性,以避免副作用,并实现代码的良好可复用性。同时,函数式编程非常复杂。
Async/await以及它底层promises的应用正在猛烈地冲击着JS的世界。在大多数客户端和JS服务端平台的支持下,回调编程已经成为过去的事情。当然,基于回调的编程很丑陋的。
如果你曾经了解或编写过JavaScript,你可能已经注意到定义函数的方法有两种。即便是对编程语言有更多经验的人也很难理解这些差异。在这篇博客的第一部分,我们将深入探讨函数声明和函数表达式之间的差异。
随着软件应用的复杂度不断上升,为了确保应用稳定且易拓展,代码质量就变的越来越重要。不幸的是,包括我在内的几乎每个开发者在职业生涯中都会面对质量很差的代码。这些代码通常有以下特征:
在js开发中,程序代码是从上而下一条线执行的,但有时候我们需要等待一个操作结束后,再进行下一步操作,这个时候就需要用到回调函数。 在js中,函数也是对象,确切地说:函数是用Function()构造函数创建的Function对象。
这篇文章主要介绍ES5中函数的4种调用,在ES5中函数内容的this指向和调用方法有关。以及ES6中函数的调用,使用箭头函数,其中箭头函数的this是和定义时有关和调用无关。
函数的三种定义方法分别是:函数定义语句、函数直接量表达式和Function()构造函数的方法,下面依次介绍这几种方法具体怎么实现,在实际编程中,Function()构造函数很少用到,前两中定义方法使用比较普遍。
微软 称excel就实现面向开发者的功能,也就是说我们不仅可以全新定义的公式,还可以重新定义excel的内置函数,现在Excel自定义函数增加了使用 JavaScript 编写的支持,下面就简单介绍下如何使用js来编写excel自定义函数。
这篇文章主要讲解:js立即执行函数是什么?js使用立即执行函数有什么作用呢?js立即执行函数的写法有哪些?
内容以共享、参考、研究为目的,不存在任何商业目的。其版权属原作者所有,如有侵权或违规,请与小编联系!情况属实本人将予以删除!