在云可调用函数中返回日期/服务器时间戳

dsl*_*101 6 javascript firebase google-cloud-functions google-cloud-firestore

我正在使用客户端应用程序中的可调用函数从 Firestore 中检索一些数据。数据是使用以下方法创建的:

projectData = {
  created: firebase.firestore.FieldValue.serverTimestamp(),
  ...otherData
}
firebase.firestore().collection(projectsCollection).add(projectData)
Run Code Online (Sandbox Code Playgroud)

我可以看到时间戳正确保存在 Firestore 控制台中。callable 函数做了一些其他的事情并且有错误处理,但是数据检索是这样完成的(使用 lodash 将每个文档展开成一个对象返回给客户端):

const projectRef = firestore.collection(gProjectsCollection).orderBy('created')
return projectRef.get().then(snapshot => {
  return {
    projects: _.chain(snapshot.docs)
      .keyBy('id')
      .mapValues(s => s.data())
      .value()
  }
})
Run Code Online (Sandbox Code Playgroud)

这主要是有效的,但返回的对象有一个被破坏的created属性(在函数 shell 输出中显示):

RESPONSE RECEIVED FROM FUNCTION: 200, {
  "result": {
     "projects": {
      "XcRyQyaxLguRdbNmxQdn": {
        "name": "c",
        "description": "c",
        "created": {
          "_seconds": 1543405587,
          "_nanoseconds": 169000000
        }
      }
    }
  }
}
Run Code Online (Sandbox Code Playgroud)

我假设这是因为可调用函数在JSON.stringify()内部使用,并且服务器时间戳未正确转换。我尝试将时间戳显式转换为这样的日期:

return projectRef.get().then(snapshot => {
  return {
    exVersion,
    exId,
    projects: _.chain(snapshot.docs)
      .keyBy('id')
      .mapValues(s => s.data())
      .forEach(d => { d.created = d.created.toDate() })
      .value()
  }
})
Run Code Online (Sandbox Code Playgroud)

但现在我得到一个空对象:

RESPONSE RECEIVED FROM FUNCTION: 200, {
  "result": {
    "projects": {
      "XcRyQyaxLguRdbNmxQdn": {
        "name": "c",
        "description": "c",
        "created": {}
      }
    }
  }
}
Run Code Online (Sandbox Code Playgroud)

我怀疑这里真正的问题是可调用函数没有设置为返回日期对象。如果我再走一步并将时间戳转换为字符串,我最终会在客户端中得到一些东西:

return projectRef.get().then(snapshot => {
  return {
    exVersion,
    exId,
    projects: _.chain(snapshot.docs)
      .keyBy('id')
      .mapValues(s => s.data())
      .forEach(d => { d.created = d.created.toDate().toISOString() })
      .value()
  }
})
Run Code Online (Sandbox Code Playgroud)

给出:

RESPONSE RECEIVED FROM FUNCTION: 200, {
  "result": {
    "exVersion": 9,
    "exId": null,
    "projects": {
      "XcRyQyaxLguRdbNmxQdn": {
        "name": "c",
        "description": "c",
        "created": "2018-11-28T11:46:27.169Z"
      }
    }
  }
}
Run Code Online (Sandbox Code Playgroud)

我在文档中找不到关于日期特殊处理的可调用函数的任何内容,但是我是否遗漏了应该如何完成的内容?


可调用函数中的一些进一步分析表明JSON.stringify()涉及,但不是全部问题:

console.log(JSON.stringify(d.created)):
info: {"_seconds":1543405587,"_nanoseconds":169000000}
JSON.stringify(d.created.toDate())
into: "2018-11-28T11:46:27.169Z"
Run Code Online (Sandbox Code Playgroud)

所以打电话d.created.toDate() 应该就够了。但是我遇到过其他情况,其中Date可调用函数不返回对象,例如:

const testObject = {
  some: 'thing',
  d: new Date()
}

console.log('JSON:', JSON.stringify(testObject))

  return projectRef.get().then(snapshot => {
    return {
      testObject,
      projects: _.chain(snapshot.docs)
        .keyBy('id')
        .mapValues(s => s.data())
        .forEach(d => { console.log('d.created is:', JSON.stringify(d.created.toDate())); d.created = d.created.toDate() })
        .value()
    }
  })
Run Code Online (Sandbox Code Playgroud)

请注意在下面的输出中,JSON.stringify()日期对象的记录结果似乎有效,但是当这些对象包含在从函数返回的对象中时,它们都作为空对象出现:

firebase > getAllProjects({uid: 1234})
Sent request to function.
firebase > info: User function triggered, starting execution
info: JSON: {"some":"thing","d":"2018-11-28T13:22:36.841Z"}
info: Got 1 projects
info: d.created is: "2018-11-28T11:46:27.169Z"
info: Execution took 927 ms, user function completed successfully

RESPONSE RECEIVED FROM FUNCTION: 200, {
  "result": {
    "testObject": {
      "some": "thing",
      "d": {}
    },
    "projects": {
      "XcRyQyaxLguRdbNmxQdn": {
        "description": "c",
        "created": {},
        "name": "c"
      }
    }
  }
}
Run Code Online (Sandbox Code Playgroud)

Fra*_*len 6

文档

要将数据发送回客户端,请返回可以采用 JSON 编码的数据。

由于Date不是 JSON 类型,因此您必须为其使用自己的序列化格式(至少如果您希望它可靠/可移植)。从链接的答案来看,这听起来像是Date.toJSON一个很好的候选人。