小程序
小游戏
企业微信
微信支付
扫描小程序码分享
在 wxml 文件中调用了 wxs 中的方法将时间戳格式化,但是似乎并没生效而且也未报错。
版本:1.05.2110290
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
也不舍得在wxs里打印调试看下吗?看下是否被调用和输出是否正常
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
我写了个demo没法复现你的问题,wxs里面处理时间戳是ok的,你调用的方法我都用了一遍。
1,检查下item.orderTime有值吗,
2,检查下引入wxs的src是不是写到另一个目录下的同名文件了
function convertTime(){
var stamp = 1637744252
var time = getDate(stamp)
console.log('test',("0"+time.getFullYear()).slice(-2))
console.log('test',("0"+time.getDate()).slice(-2))
console.log('test',("0"+time.getHours()).slice(-2))
console.log('test',("0"+time.getMinutes()).slice(-2))
console.log('test',("0"+time.getSeconds()).slice(-2))
console.log('test',time)
return time
}
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
也不舍得在wxs里打印调试看下吗?看下是否被调用和输出是否正常
我写了个demo没法复现你的问题,wxs里面处理时间戳是ok的,你调用的方法我都用了一遍。
1,检查下item.orderTime有值吗,
2,检查下引入wxs的src是不是写到另一个目录下的同名文件了
function convertTime(){
var stamp = 1637744252
var time = getDate(stamp)
console.log('test',("0"+time.getFullYear()).slice(-2))
console.log('test',("0"+time.getDate()).slice(-2))
console.log('test',("0"+time.getHours()).slice(-2))
console.log('test',("0"+time.getMinutes()).slice(-2))
console.log('test',("0"+time.getSeconds()).slice(-2))
console.log('test',time)
return time
}