微信小程序使用函数的方法
生活随笔
收集整理的這篇文章主要介紹了
微信小程序使用函数的方法
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
一、使用來自不同頁面的函數
函數寫在util.js頁面
function formatTime(date) {var year = date.getFullYear()var month = date.getMonth() + 1var 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 = thisif (this.globalData.userInfo) {typeof cb == "function" && cb(this.globalData.userInfo)} else {//調用登錄接口wx.getUserInfo({withCredentials: false,success: function(res) {that.globalData.userInfo = res.userInfotypeof cb == "function" && cb(that.globalData.userInfo)}})}},globalData: {userInfo: null,college_change:false} })三、在其他頁面中使用
總結
以上是生活随笔為你收集整理的微信小程序使用函数的方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: @data 重写set方法_C#中的类、
- 下一篇: activiti页面展示流程图乱码_ac