当前位置:   article > 正文

微信小程序不支持new Date().toLocaleDateString()_微信小程序 tolocalestring

微信小程序 tolocalestring

微信开发者工具和线上预览是正常的

体验版和正式版失效

只能自己一点一点拼接

  1. let d = new Date()
  2. let year = d.getFullYear()
  3. let month = d.getMonth() + 1
  4. let day = d.getDate()
  5. let date = `${year+'-'+month +'-'+day}` // 2023-8-14

我写的

  1. for (let i = 0; i < res.list.length; i++) {
  2. res.list[i].lastTime = (new Date(parseInt(res.list[i].lastTime)).getMonth() + 1 < 10 ? '0' + (new Date(parseInt(res.list[i].lastTime)).getMonth() + 1) : new Date(parseInt(res.list[i].lastTime)).getMonth() + 1)
  3. + '-' + (new Date(parseInt(res.list[i].lastTime)).getDate() + 1 < 10 ? '0' + (new Date(parseInt(res.list[i].lastTime)).getDate() + 1) : new Date(parseInt(res.list[i].lastTime)).getDate() + 1)
  4. + " " + (new Date(parseInt(res.list[i].lastTime)).getHours() + 1 < 10 ? '0' + (new Date(parseInt(res.list[i].lastTime)).getHours() + 1) : new Date(parseInt(res.list[i].lastTime)).getHours() + 1)
  5. + ':' + (new Date(parseInt(res.list[i].lastTime)).getMinutes() + 1 < 10 ? '0' + (new Date(parseInt(res.list[i].lastTime)).getMinutes() + 1) : new Date(parseInt(res.list[i].lastTime)).getMinutes() + 1)
  6. }

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读