溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

小程序中倒計(jì)時(shí)怎么實(shí)現(xiàn)

發(fā)布時(shí)間:2021-01-28 10:41:20 來(lái)源:億速云 閱讀:159 作者:小新 欄目:移動(dòng)開(kāi)發(fā)

小編給大家分享一下小程序中倒計(jì)時(shí)怎么實(shí)現(xiàn),希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

在商城商品信息里,會(huì)有倒計(jì)時(shí)的功能。

小程序中倒計(jì)時(shí)怎么實(shí)現(xiàn)

計(jì)算時(shí)間需要轉(zhuǎn)化為時(shí)間戳,但是安卓和ios系統(tǒng)對(duì)于識(shí)別的時(shí)間格式是不一樣的,安卓對(duì)識(shí)別沒(méi)有要求。IOS格式要求 2018/08/20 10:20:32,使用Date.parse()轉(zhuǎn)化時(shí)間戳不會(huì)出現(xiàn)在IOS端無(wú)法倒計(jì)時(shí)。

timeFormat: function(param) { //小于10的格式化函數(shù)
    return param < 10 ? '0' + param : param;
  },
  countDown: function() { //倒計(jì)時(shí)函數(shù)
    // 獲取當(dāng)前時(shí)間,同時(shí)得到活動(dòng)結(jié)束時(shí)間數(shù)組
    let newTime = Date.parse(new Date());
    let endTimeList = this.data.actEndTimeList;
    let countDownArr = [];
    // 對(duì)結(jié)束時(shí)間進(jìn)行處理渲染到頁(yè)面
    endTimeList.forEach(o => {
      var strtime = o.replace(/-/g, '/');
      strtime = strtime.substring(0, 19);
      let endTime = new Date(strtime).getTime();
      let obj = null;
      // 如果活動(dòng)未結(jié)束,對(duì)時(shí)間進(jìn)行處理
      if (endTime - newTime > 0) {
        let time = (endTime - newTime) / 1000;
        // 獲取天、時(shí)、分、秒
        let day = parseInt(time / (60 * 60 * 24));
        let hou = parseInt(time % (60 * 60 * 24) / 3600);
        let min = parseInt(time % (60 * 60 * 24) % 3600 / 60);
        let sec = parseInt(time % (60 * 60 * 24) % 3600 % 60);
        obj = {
          day: this.timeFormat(day),
          hou: this.timeFormat(hou),
          min: this.timeFormat(min),
          sec: this.timeFormat(sec)
        }
      } else { //活動(dòng)已結(jié)束,全部設(shè)置為'00'
        obj = {
          day: '00',
          hou: '00',
          min: '00',
          sec: '00'
        }
      }
      countDownArr.push(obj);
    })
    // 渲染,然后每隔一秒執(zhí)行一次倒計(jì)時(shí)函數(shù)
    this.setData({
      countDownList: countDownArr
    })
    setTimeout(this.countDown, 1000);
  },

看完了這篇文章,相信你對(duì)“小程序中倒計(jì)時(shí)怎么實(shí)現(xiàn)”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI