繁体   English   中英

如何使用一个集合中的文档字段从不同集合中检索另一个文档字段?

[英]How do I use a document's field from one collection to retrieve another document field from a different collection?

这是我的数据库的结构:挑战表用户表

这是我得到的错误:错误图片

我想使用“created_by”字段,它也是用户表的文档 ID,我想在其中检索显示名称和照片 URL。

我并不完全确定 Promise 是如何工作的,我有一种感觉,这就是我在挣扎的原因,但到目前为止我所拥有的代码如下:

数据检索:

UsersDao.getUserData(ChallengesDao.getChallenges().then(result => {return result['author'][0]})).then(result => {console.log(result)})

挑战 DAO:

export default class ChallengesDao {

  static async getChallenges() {
const db = require('firebase').firestore();
    // const challenges = db.collection('challenges').limit(number_of_challenges)
    // challenges.get().then(())

    const snapshot = await db.collection('challenges').get()

    const names = snapshot.docs.map(doc => doc.data().name)
    const createdBy = snapshot.docs.map(doc => doc.data().created_by)
    const highScores = snapshot.docs.map(doc => doc.data().high_score.score)
    return {challengeName: names, author: createdBy, score: highScores}
  }

用户DAO:

const db = require('firebase').firestore();

export default class UsersDao {
  static async getUserData(uid: string) {
    let userData = {};
    try {
      const doc = await db
        .collection('users')
        .doc(uid)
        .get();
      if (doc.exists) {
        userData = doc.data();
      } else {
        console.log('User document not found!');
      }
    } catch (err) {}
    return userData;
  }
}

你越来越近了。 剩下要做的就是为从getChallenges返回的每个 UID 调用getUserData

将这两者结合起来看起来像这样:

let challenges = await getChallenges();
let users = await Promise.all(challenges.author.map((uid) => getUserData(uid));

console.log(challenges.challengeName, users);

这里的新东西是Promise.all() ,它结合了许多异步调用并返回一个 promise ,当它们全部完成时完成。


你的代码起初对我来说有点奇怪,因为你从getChallenges返回数据的方式。 我建议不要返回三个 arrays 的简单值,而是返回一个数组,其中每个 object 具有三个值:

  static async getChallenges() {
    const db = require('firebase').firestore();
    const snapshot = await db.collection('challenges').get();

    const challenges = snapshot.docs.map(doc => { name: doc.data().name, author: doc.data().created_by, score: doc.data().high_score.score });

    return challenges;
  }

如果您想将用户添加到此数组中的每个 object 中,除了已经存在的 UID 之外,您可以执行以下操作:

let challenges = await getChallenges();
await Promise.all(challenges.forEach(async(challenge) => {
  challenge.user = await getUserData(challenge.author);
});

console.log(challenges);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM