1. 程式人生 > >微信小程序時鐘(xx年xx月xx日xx:xx格式)

微信小程序時鐘(xx年xx月xx日xx:xx格式)

option light inter ons XML var set 格式 java

wxml:

<view>時間:{{newTime}}</view>

js:

page({
    data:{
        newTime:‘‘
    },
    onLoad: function (options) {
    var that = this;
    //獲取實時時間
    setInterval(function () {
      var nowTime = new Date();
      var hour = nowTime.getHours();
      var minutes = nowTime.getMinutes();
      if (hour < 10) {
        hour = "0" + hour;
      }
      if (minutes < 10) {
        minutes = "0" + minutes;
      }
      //console.log("nowTime:",nowTime)
      that.setData({
        newTime: nowTime.getFullYear() + ‘年‘ + (nowTime.getMonth() + 1) + ‘月‘ + nowTime.getDate() + "日" + hour + ‘:‘ + minutes
      })
    }, 200)
  },
})    

  

微信小程序時鐘(xx年xx月xx日xx:xx格式)