Computer >> Máy Tính >  >> Lập trình >> MongoDB

Làm cách nào để tạo bộ sưu tập một cách chính xác trong MongoDB để tránh lỗi “ReferenceError:Not xác định”?

Để tạo tập hợp một cách chính xác, bạn cần sử dụng đối tượng MongoDB trong lệnh gọi, tức là

db.createCollection("yourCollectionName");

Hãy để chúng tôi triển khai cú pháp trên để tạo một tập hợp và gọi nó bằng cách sử dụng đối tượng MongoDB -

> use sample;
switched to db sample

> db.createCollection("employeeInformation");
{ "ok" : 1 }

Hiển thị tất cả các bộ sưu tập từ cơ sở dữ liệu ‘mẫu’ ở trên -

> db.getCollectionNames();

Điều này sẽ tạo ra kết quả sau -

[
   "arraySizeErrorDemo",
   "atleastOneMatchDemo",
   "basicInformationDemo",
   "combinedAndOrDemo",
   "convertSQLQueryDemo",
   "copyThisCollectionToSampleDatabaseDemo",
   "countOrSizeDemo",
   "distinctOnMultipleFieldsDemo",
   "documentWithAParticularFieldValueDemo",
   "employee",
   "employeeInformation",
   "findListOfIdsDemo",
   "findMimimumElementInArrayDemo",
   "findSubstring",
   "getAllRecordsFromSourceCollectionDemo",
   "getElementWithMaxIdDemo",
   "insertDocumentWithDateDemo",
   "internalArraySizeDemo",
   "keepTwoColumnsUniqueDemo",
   "largestDocumentDemo",
   "makingStudentInformationClone",
   "nestedArrayDemo",
   "oppositeAddToSetDemo",
   "prettyDemo",
   "projectionAnElementDemo",
   "replacingEntireDocumentDemo",
   "returnOnlyUniqueValuesDemo",
   "searchInInnerDemo",
   "selectItemDemo",
   "selectWhereInDemo",
   "sourceCollection",
   "specificFieldDemo",
   "studentInformation",
   "sumOfValueDemo",
   "sumTwoFieldsDemo",
   "truncateDemo",
   "updateFieldIfValueIsGreaterDemo",
   "updateInformation",
   "updateSubObjectDemo",
   "userInformation"
]