sql >> Database teknologi >  >> NoSQL >> MongoDB

Ude af stand til at løse løfteafvisning og sende array som svar

result.forEach returnerer række løfter. Du skal love det hele på én gang ved at bruge 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));
};

Eller kan finde på én gang

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. MongoDB 'count()' er meget langsom. Hvordan forfiner/arbejder vi med det?

  2. Sådan flettes data fra to samlinger i MongoDB

  3. auto-increment ved hjælp af loopback.js og MongoDB

  4. Opret et tekstindeks med forskellige feltvægte i MongoDB