一、準備工作
1、在mongodb建立將要讀取的表
建立資料庫mongotest
參考node-mongodb-native的文件:https://github.com/mongodb/node-mongodb-native
var server = new mongodb.Server("127.0.0.1",27017,{});//本地27017埠
new mongodb.Db('mongotest',server,{}).open(function(error,client){//資料庫:mongotest
if(error) throw error;
var collection = new mongodb.Collection(client,'user');//表:user
collection.find(function(error,cursor){
cursor.each(function(error,doc){
if(doc){
console.log("name:" doc.name " age:" doc.age);
}
});
});
});
增刪改查的demo參考文件