14
ดึงเฉพาะองค์ประกอบที่สอบถามในอาร์เรย์วัตถุในคอลเลกชัน MongoDB
สมมติว่าคุณมีเอกสารต่อไปนี้ในคอลเล็กชันของฉัน: { "_id":ObjectId("562e7c594c12942f08fe4192"), "shapes":[ { "shape":"square", "color":"blue" }, { "shape":"circle", "color":"red" } ] }, { "_id":ObjectId("562e7c594c12942f08fe4193"), "shapes":[ { "shape":"square", "color":"black" }, { "shape":"circle", "color":"green" } ] } ทำแบบสอบถาม: db.test.find({"shapes.color": "red"}, {"shapes.color": 1}) หรือ db.test.find({shapes: {"$elemMatch": {color: "red"}}}, {"shapes.color": 1}) ส่งคืนเอกสารที่จับคู่(เอกสาร 1)แต่จะเสมอกับรายการอาร์เรย์ทั้งหมดในshapes: { "shapes": [ {"shape": "square", "color": "blue"}, {"shape": "circle", …