我看到有人有同样的困惑,还没有答案 https://developers.weixin.qq.com/community/develop/doc/000c24b58948a0cfc02c9077d5bc00?_at=1663946901116 请大神给讲讲,这个页面初始化数据data是什么时候赋值的?
页面初始化数据可以用app.globalData赋值吗?data: { energy: app.globalData.energy, }, 这样可以吗? 在开发者工具没问题,真机调试就会读不到数据。 还是说必须要在onLoad里this.setData
2022-09-23 应该是 util.js 里的函数定义的不对把? 这个应该怎么写
util.formatTime is not a function?为了格式化时间,我自己抄了一份util.js 代码如下: // util.js const formatTime = date => { var year = date.getFullYear() var month = date.getMonth() + 1 var day = date.getDate() var hour = date.getHours() var minute = date.getMinutes() var second = date.getSeconds() return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':') } const formatNumber = n => { n = n.toString() return n[1] ? n : '0' + n } 引用如下: // list.js const util = require("../../utils/util") Page({ onLoad() { t = util.formatTime(new Date(1662628006485)) console.log(t) } }) 报错如下: TypeError: util.formatTime is not a function 我是哪里搞错了么?
2022-09-08