functionweb(data)小程序中什么意思

functionweb(data)小程序中什么意思,第1张

functionweb(data)小程序中data是回调函数默认的参数。动态函数必须用Function对象来定义Function是明盯js中的一个对象,是固定唯渣不指槐悄变的,规定Function对象的"F"必须大写。

一、使用来自不同页面的函数

函数写在util.js页面

function formatTime(date) {

var year = date.getFullYear()

var month = date.getMonth() + 1

var day = date.getDate()

var hour = date.getHours()

var minute = date.getMinutes()

var second = date.getSeconds()

return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':')

}

function formatNumber(n) {

n = n.toString()

return n[1] ? n : '0' + n

}

module.exports = {

formatTime: formatTime,

}

使用函数

图片描做唤述

图片描述

二、使用相同页面的函数

get_productInformation: function () {

。。。。

},

getZones:function(){

this.get_productInformation

},

三、使纯知凯用app.js内定义的函数

app.js代码

//app.js

App({

onLaunch: function() {

//调用API从本地缓存中获取数据

var logs = wx.getStorageSync('logs') || []

logs.unshift(Date.now())

wx.setStorageSync('logs', logs)

},

get_a_test:function(){

console.log('this is a test')

},

getUserInfo: function(cb) {

var that = this

if (this.globalData.userInfo) {

typeof cb == "function" &&cb(this.globalData.userInfo)

} else {

//调用登录接口

wx.getUserInfo({

withCredentials: false,

success: function(res) {

that.globalData.userInfo = res.userInfo

typeof cb == "function" &&cb(that.globalData.userInfo)

}

})

}

},

globalData: {

userInfo: null,

college_change:false

}

})

在其他页面中使用

图猛帆片描述

function getData()

{

return new Promise((resolve, reject)=>{

var arr = []

var i=0,len = 3

for(i<leni++)

{

//通过 request 向后台发送请脊李求,把数据添加到 arr 数组里面颂野知,当长度相同时执行回野消调函数

request().then(res=>{

arr.push(res)

if(arr.length === len)resolve(arr)

})

}

})

}

getData().then(res=>{

console.log(res)

}).catch(res=>{

console.log(res)

})


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8214876.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-14
下一篇 2023-04-14

发表评论

登录后才能评论

评论列表(0条)

保存