1.获取当前系统日期和时间
在小程序中,新建项目时,就会有一个utils.js文件,就是获取日期和时间的,代码如下:
utils.js:
function formatTime(date) {
var year = date.getFullYear()
var month = date.getMonth() + 1
var day = date.getDate()
var hour = date.getHours()
var minute = date.getMinutes()
var second = date.getSeconds()
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
}
module.exports = {
formatTime: formatTime
}
使用示例:
index.js:
// 在需要使用的js文件中,导入js
var util = require('../../utils/util.js');
Page({
data: {
},
onLoad: function () {
// 调用函数时,传入new Date()参数,返回值是日期和时间
var time = util.formatTime(new Date());
// 再通过setData更改Page()里面的data,动态更新页面的数据
this.setData({
time: time
});
}
})
最后显示时间
index.wxml:
<view>{{time}}</view>
//或者
var sjc = 1488481383;
console.log(time.formatTime(sjc,'Y/M/D h:m:s'));
console.log(time.formatTime(sjc, 'h:m'));
2.获取时间戳
new Date('2018-09-03 15:46:13').getTime()
这个打印结果应该是时间戳,但是部分机型会返回 undefined 或者 Invalid date;
解决方法:
console.log(new Date('2018-09-03 15:46:13'
.replace(/-/g,"/")))
意思是把 2018-09-03 15:46:13 改为 2018/09/03 15:46:13
最后:
console.log(new Date('2018-09-03 15:46:13'
.replace(/-/g,"/")).getTime())
本篇文章提供的是基础逻辑,大家可根据自己的实际需要进行修改。