Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MongoDB

จะนับการวนซ้ำของเคอร์เซอร์ใน MongoDB ได้อย่างไร


คุณต้องใช้ตรรกะที่กำหนดเองโดยใช้ while loop ร่วมกับ find() เคอร์เซอร์ ให้เราสร้างคอลเลกชันที่มีเอกสาร -

> db.demo724.insertOne(
...    {
...       details:
...       {
...          id:101,
...          otherDetails:[
...             {Name:"Chris"}
...          ]
...       }
...    }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5eab0cce43417811278f5890")
}
>
>
> db.demo724.insertOne(
... {
...
... }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5eab0cce43417811278f5891")
}
> db.demo724.insertOne(
...    {
...       details:
...       {
...          id:1001
...       }
...    }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5eab0cce43417811278f5892")
}

แสดงเอกสารทั้งหมดจากคอลเล็กชันโดยใช้วิธี find() -

> db.demo724.find();

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ &miinus;

{ "_id" : ObjectId("5eab0cce43417811278f5890"), "details" : { "id" : 101, "otherDetails" : [ { "Name" : "Chris" } ] } }
{ "_id" : ObjectId("5eab0cce43417811278f5891") }
{ "_id" : ObjectId("5eab0cce43417811278f5892"), "details" : { "id" : 1001 } }

ต่อไปนี้เป็นแบบสอบถามเพื่อนับการวนซ้ำของเคอร์เซอร์ใน MongoDB -

> var c=db.demo724.find();
> var detailsCount=0;
> while (c.hasNext()) {
...    var current = c.next();
...    if (typeof current["details"] != "undefined") {
...       detailsCount++;
...    }
... }
1
> print("number of details: " + detailsCount);

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

number of details: 2