⼩程序动态获取当前时间1,动态获取当前时间
2,在根⽬录下utils⽂件夹创建utils.js写获取时间⽅法
utils.js
/**获取当前系统时间 */
function formatTime(date) {
var year = FullYear()
var month = Month() + 1
var day = Date()
var hour = Hours()
var minute = Minutes()
var second = Seconds()
写文章的小程序
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
}
formatTime
}
3,页⾯动态获取当前时间
wxml
<view class="currentTime">
<view>当前时间:{{time}}</view>
</view>
js
var util = require('../../../utils/utils.js');
Page({
/**
* 页⾯的初始数据
*/
data: {
time: '',
},
/**
* ⽣命周期函数--监听页⾯加载
*/
onLoad: function (options) {
let that = this;
setInterval(function () {
that.setData({
time: util.formatTime(new Date())
});
}, 1000);
},
//点击获取当前点击时间
getTime: function () {
let that = this;
let currentTime = util.formatTime(new Date());    that.setData({
time: currentTime
})
},
})

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。