db.serverDate

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

方法签名如下:

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

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

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

示例代码

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

  1. const cloud = require('wx-server-sdk')
  2. cloud.init()
  3. const db = cloud.database()
  4. exports.main = async (event, context) => {
  5. try {
  6. return await db.collection('todos').add({
  7. description: 'eat an apple',
  8. createTime: db.serverDate()
  9. })
  10. } catch(e) {
  11. console.error(e)
  12. }
  13. }

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

  1. const cloud = require('wx-server-sdk')
  2. cloud.init()
  3. const db = cloud.database()
  4. exports.main = async (event, context) => {
  5. try {
  6. return await db.collection('todos').doc('my-todo-id').update({
  7. due: db.serverDate({
  8. offset: 60 * 60 * 1000
  9. })
  10. })
  11. } catch(e) {
  12. console.error(e)
  13. }
  14. }
  15. ``

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