db.serverDate

构造一个服务端时间的引用。可用于查询条件、更新字段值或新增记录时的字段值。

方法签名如下:

  1. function serverDate(options?: object): ServerDate

方法接受一个可选对象参数 options,其字段定义如下:

字段名 类型 必填 默认值 说明
offset number 引用的服务端时间偏移量,毫秒为单位,可以是正数或负数

示例代码

新增记录时设置字段为服务端时间:

  1. const db = wx.cloud.database()
  2. db.collection('todos').add({
  3. description: 'eat an apple',
  4. createTime: db.serverDate()
  5. })

更新字段为服务端时间往后一小时:

  1. const db = wx.cloud.database()
  2. db.collection('todos').doc('my-todo-id').update({
  3. due: db.serverDate({
  4. offset: 60 * 60 * 1000
  5. })
  6. })
  7. ``

原文: https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-client-api/database/db.serverDate.html