码迷,mamicode.com
首页 > 微信 > 详细

微信小程序--当前日期

时间:2020-05-04 23:10:24      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:end   page   load   mic   --   显示   show   option   image   

功能:

显示当前日期

对应页面中的.js文件里添加

注意:

日期格式化函数不要写在Page({ ... })里面

Page({
    onLoad: function(options) {
        // 日期
        var today = new Date;
        var solar = formatTime(today);
        let show_day = new Array(‘日‘, ‘一‘, ‘二‘, ‘三‘, ‘四‘, ‘五‘, ‘六‘);

        this.setData({
          solarCalendor: solar.year + ‘年‘ + solar.month + ‘月‘ + solar.day + ‘日 · 星期‘ + show_day[today.getDay()]
        })
    },
})

// 日期格式化函数
const formatTime = date => {
  const year = date.getFullYear()
  const month = date.getMonth() + 1
  const day = date.getDate()

  return {
    year,
    month,
    day
  }
}

效果显示,可以去我的小程序看看效果哦,就在日历中。
技术图片

感觉有用的小伙伴,点个赞再走撒~

微信小程序--当前日期

标签:end   page   load   mic   --   显示   show   option   image   

原文地址:https://blog.51cto.com/feature09/2492392

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!