微信小程序云开发服务端数据库API 构造一个服务端时间的引用
2022-05-12 16:20 更新
db.serverDate
构造一个服务端时间的引用。可用于查询条件、更新字段值或新增记录时的字段值。
方法签名如下:
function serverDate(options?: object): ServerDate
方法接受一个可选对象参数 options,其字段定义如下:
字段名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
offset | number | 否 | 引用的服务端时间偏移量,毫秒为单位,可以是正数或负数 |
示例代码
新增记录时设置字段为服务端时间:
const cloud = require('wx-server-sdk')
cloud.init()
const db = cloud.database()
exports.main = async (event, context) => {
try {
return await db.collection('todos').add({
description: 'eat an apple',
createTime: db.serverDate()
})
} catch(e) {
console.error(e)
}
}
更新字段为服务端时间往后一小时:
const cloud = require('wx-server-sdk')
cloud.init()
const db = cloud.database()
exports.main = async (event, context) => {
try {
return await db.collection('todos').doc('my-todo-id').update({
due: db.serverDate({
offset: 60 * 60 * 1000
})
})
} catch(e) {
console.error(e)
}
}
``
以上内容是否对您有帮助:
更多建议: