5.3.5. db.serverDate¶
-
cloud.database.
serverDate
([{[offset]}])¶ 构造一个服务端时间的引用。可用于查询条件、更新字段值或新增记录时的字段值。
- 参数
offset (number) – 可选 引用的服务端时间偏移量,毫秒为单位,可以是正数或负数
- 返回类型
ServerDate
- 示例
新增记录时设置字段为服务端时间:
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) } }