微信小程序获取系统日期和时间

转自:http://blog.csdn.net/michael_ouyang/article/details/55189331

在小程序中,新建项目时,就会有一个utils.js文件,就是获取日期和时间的,代码如下:

utils.js:

[javascript]  view plain  copy
  1. function formatTime(date) {  
  2.   var year = date.getFullYear()  
  3.   var month = date.getMonth() + 1  
  4.   var day = date.getDate()  
  5.   
  6.   var hour = date.getHours()  
  7.   var minute = date.getMinutes()  
  8.   var second = date.getSeconds()  
  9.   
  10.   return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':')  
  11. }  
  12.   
  13. function formatNumber(n) {  
  14.   n = n.toString()  
  15.   return n[1] ? n : '0' + n  
  16. }  
  17.   
  18. module.exports = {  
  19.   formatTime: formatTime  
  20. }  


使用示例:

index.js:

[javascript]  view plain  copy
  1. // 在需要使用的js文件中,导入js  
  2. var util = require('../../utils/util.js');  
  3. Page({  
  4.   data: {  
  5.   
  6.   },  
  7.   onLoad: function () {  
  8.     // 调用函数时,传入new Date()参数,返回值是日期和时间  
  9.     var time = util.formatTime(new Date());  
  10.     // 再通过setData更改Page()里面的data,动态更新页面的数据  
  11.     this.setData({  
  12.       time: time  
  13.     });  
  14.   }  
  15.   
  16. })  

index.wxml:

[html]  view plain  copy
  1. <view>{{time}}view>  

运行结果:

你可能感兴趣的:(微信小程序,微信小程序)