微信小程序如何把后台返回的多条json数据的时间戳转换为时间放到页面上 (微信小程序 时间戳转换为时间)

小程序端

在utils文件夹下的util.js写入 

//时间戳转换时间  
function toData(number){  
    var n=number * 1000;  
    var date = new Date(n);  
    var Y = date.getFullYear() + '/';  
    var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '/';  
    var D = date.getDate()<10 ? '0'+date.getDate() : date.getDate();  
    return (Y+M+D)  
}  
module.exports = {
  toData: toData
}  

在需要转化时间的js页面开头写入

var Api = require("../../utils/util.js");

在请求后台数据这里写入

wx.request({
url: ,
method: 'post',
header: { 'content-type': 'application/x-www-form-urlencoded' },
success:function(res){
var datas = res.data.data;
for (let i = 0; i < datas.length; i++) {
datas[i]["start_time"]=Api.formatTime(datas[i]["start_time"])
}
that.setData({
Order: datas,
})
}
})

我的后台数据时间字段为 start_time  你们自己改为自己的
 

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