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

Restituisce una matrice vuota di post quando si utilizza il popolamento di mangusta

Puoi utilizzare il metodo seguente per ottenere le informazioni sull'utente e i suoi post.

getUserPosts: async (req, res) => {
  try {
    const user = await User.findById(req.params.id).populate("posts");

    if (!user) {
      return res.status(400).json({ error: "No user" });
    }

    return res.status(200).json({ user });
  } catch (err) {
    return res.status(500).json({ error: "Server error" });
  }
};