MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Nie można rozwiązać odrzucenia obietnicy i wysłać tablicę jako odpowiedź

result.forEach zwraca tablicę obietnic. Musisz obiecać wszystko na raz za pomocą Promise.all([])

exports.get_users = (req, res) => {
  SubscriptionPlan.find().then(async (result) => {
    if (!result) {
      return res.status(400).json({ message: "unable to process" });
    }
    let modifiedData = [];
    await Promise.all(
      result.map(async(data) => {
        if (data.processStatus === "active") {
          const response = await Users.findById(data.userId);
          modifiedData.push(response);
        }
      })
    );
    return res.json(modifiedData);
  }).catch((err) => console.log(err));
};

Lub można znaleźć od razu

exports.get_users = async (req, res) => {
  try {
    const result = await SubscriptionPlan.find({ processStatus: "active" });
    if (!result) {
      return res.status(400).json({ message: "unable to process" });
    }
    const ids = result.map(({ userId }) => userId);
    const response = await Users.find({ userId: { $in: ids } });
    return res.json(response);
  } catch (err) {
    console.log(err)
    return res.status(400).json({ message: "unable to process" });
  }
};



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Struktura agregacji MongoDB — jak dopasować według zakresu dat, pogrupować według dni i średniej zwrotu dla każdego dnia?

  2. jak stworzyć obiekt mongoDB w java

  3. Redagowanie w mongodb wydaje mi się niejasne

  4. Znajdź po obsadzeniu mangusty

  5. Laravel 5.2 Mongo MonogDB Nie udało się przeanalizować URI MongoDB