小程序
小游戏
企业微信
微信支付
扫描小程序码分享
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
云函数默认时区不是+8,云函数运行在服务器上,跟你本地时间没关系
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
// 云函数入口函数
exports.main = async (timestamp) => {
if(typeof timestamp != 'undefined'){
timestamp = new Date(timestamp + 28800000)
let yyyy = timestamp.getFullYear()
let MM = (timestamp.getMonth() + 1) < 10 ? '0' + (timestamp.getMonth() + 1).toString() : (timestamp.getMonth() + 1).toString()
let dd = timestamp.getDate() < 10 ? '0' + timestamp.getDate().toString() : timestamp.getDate().toString()
let HH = timestamp.getHours() < 10 ? '0' + timestamp.getHours().toString() : timestamp.getHours().toString()
let mm = timestamp.getMinutes() < 10 ? '0' + timestamp.getMinutes().toString() : timestamp.getMinutes().toString()
let ss = timestamp.getSeconds() < 10 ? '0' + timestamp.getSeconds().toString() : timestamp.getSeconds().toString()
console.log('hh is: ',HH)
return yyyy + '-' + MM + '-' + dd + ' ' + HH + ':' + mm + ':' + ss
}
你好,这个需要开发者自己处理下,具体可参考https://docs.cloudbase.net/cloud-function/timezone.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
云函数默认时区不是+8,云函数运行在服务器上,跟你本地时间没关系
赚了hh,又要考虑dd是不是满,mm是不是满,得先把8小时转成时间戳,然后,给时间戳加上8小时才行
他大爷的
// 云函数入口函数
exports.main = async (timestamp) => {
if(typeof timestamp != 'undefined'){
timestamp = new Date(timestamp + 28800000)
let yyyy = timestamp.getFullYear()
let MM = (timestamp.getMonth() + 1) < 10 ? '0' + (timestamp.getMonth() + 1).toString() : (timestamp.getMonth() + 1).toString()
let dd = timestamp.getDate() < 10 ? '0' + timestamp.getDate().toString() : timestamp.getDate().toString()
let HH = timestamp.getHours() < 10 ? '0' + timestamp.getHours().toString() : timestamp.getHours().toString()
let mm = timestamp.getMinutes() < 10 ? '0' + timestamp.getMinutes().toString() : timestamp.getMinutes().toString()
let ss = timestamp.getSeconds() < 10 ? '0' + timestamp.getSeconds().toString() : timestamp.getSeconds().toString()
console.log('hh is: ',HH)
return yyyy + '-' + MM + '-' + dd + ' ' + HH + ':' + mm + ':' + ss
}
}
你好,这个需要开发者自己处理下,具体可参考https://docs.cloudbase.net/cloud-function/timezone.html