js对于时间的格式化没有封装好的API,所以我自己写了个函数进行格式化时间
module.exports = function () {
const date = new Date()
const y = date.getFullYear()
let m = date.getMonth() + 1,
d = date.getDate(),
h = date.getHours(),
i = date.getMinutes(),
s = date.getSeconds()
if (m < 10) m = '0' + m
if (d < 10) d = '0' + d
if (h < 10) h = '0' + h
if (i < 10) i = '0' + i
if (s < 10) s = '0' + s
const t = y + '-' + m + '-' + d + ' ' + h + ':' + i + ':' + s
return t
}
然后在云函数中引用
const pub = require('../pub/time.js')
在本地调试时没有问题,但是在预览和真机调试时会报错,报错找不到引用文件。具体是什么问题呢?
你把time.js写到哪了?没在云函数里面吗