小程序调模块化调用

Posted 火大

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序调模块化调用相关的知识,希望对你有一定的参考价值。

util.js

const formatTime = date => {
  const year = date.getFullYear()
  const month = date.getMonth() + 1
  const day = date.getDate()
  const hour = date.getHours()
  const minute = date.getMinutes()
  const second = date.getSeconds()

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

const formatNumber = n => {
  n = n.toString()
  return n[1] ? n : 0 + n
}

module.exports = {
  formatTime: formatTime
}
//logs.js
const util = require(../../utils/util.js)

Page({
  data: {
    logs: []
  },
  onLoad: function () {
    this.setData({
      logs: (wx.getStorageSync(logs) || []).map(log => {
        return util.formatTime(new Date(log))
      })
    })
  }
})

 

以上是关于小程序调模块化调用的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序代码片段

小程序模板使用

小程序调用提示h5错误

小程序基础13:模板

微信小程序视图层WXML_模板

7-微信小程序 模板(template)