mongodb的collection的问题~
发布于 2年前 作者 nihaoqkl 841 次浏览

var MongoClient = require(‘mongodb’).MongoClient , format = require(‘util’).format;

MongoClient.connect('mongodb://127.0.0.1:27017/test’, function(err, db) { if(err) throw err;

var collection = db.collection('test_insert');
collection.insert({a:2}, function(err, docs) {

  collection.count(function(err, count) {
    console.log(format("count = %s", count));
  });

  // Locate all the entries using find
  collection.find().toArray(function(err, results) {
    console.dir(results);
    // Let's close the db
    db.close();
  });      
});

})

拿自官方的mongo的javasrcipt文档 不太懂这里的db.collection(‘test_insert’) 这个是可以完全自定义的

是之前不需要做什么设置mongodb的test数据库的collection的吗

6 回复

MongoDB 的 collection 不用提前定义,第一次使用的时候就自动建立了。

恩 好像是数据库吧 是collection吗 看文档好像是说 use 数据库 如果不存在就会在下一次insert的时候自动创建 collection也会自动创建吗 问题是 这里的collection(‘test_insert’) test_insert 这个字符串代表了什么 此次collection的标识吗?

@nihaoqkl collection 对应关系数据库里的表。test_insert 是 collection 的名字。

@leapon 谢谢 对应表我是明白的 就是说collection() 里的是可以随时自定义一张表的对吧?

@leapon 嗯 非常感谢 有时候是需要动手试试了 呵呵!

回到顶部