Các "bài hát" được lồng vào nhau nhiều hơn 2 cấp, vì vậy theo mặc định, đầu ra được biểu thị bằng "[Đối tượng"]. Hãy thử làm điều này:
playlists[0].songs.forEach(function (song) {
console.log(song);
});
NẾU bạn đang sử dụng express.
app.get('/playlists', function (req, res, next) {
mongoose.model('Playlist').find().populate('items').exec(function (err, docs) {
if (err) return next(err);
res.json(docs);
})
});