微信小程序如何把后台返回的多条json数据的时间戳转换为时间放到页面上 (微信小程序 时间戳转换为时间)
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/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 你们自己改为自己的
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
3 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)