通过以下方法更新当前时间,ios系统有些识别不了getTime方法,获取时间显示如下图:
//获取当前时间
getTime:function() {
var that = this;
var nowTime = new Date;
this.setData({
punch: util.formatTime(new Date).substring(10, 20)
})
setTimeout(function () {
that.getTime();
}, 1000);
},
微信小程序开发问题解答
微信小程序开发者回答:
let date = new Date()
date.getHours()
date.getMinutes()
date.getSeconds()
微信小程序开发者回答:
不是这个的缘故
微信小程序开发者回答:
贴下你的formatTime方法呢
微信小程序开发者回答:
new Date() 有个括号哦。。
微信小程序开发者回答:也试了,也不行,感觉是在这个里面调用方法的缘故,后台会报这个错误setTimeout(function () { that.getTime(); }, 1000);
微信小程序开发者回答:
报错的是setTime啊。。你贴的是getTime
微信小程序开发者回答:
对呀,setTimeOut里有调用自身的方法getTime方法呀
本文网址:http://www.91bianli.com/kaifazhinan/76665.html