码迷,mamicode.com
首页 > 数据库 > 详细

mongodb 3.x以上版本与mongodb 2.x版本语法区别

时间:2020-02-07 15:05:50      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:get   when   err   wan   str   nec   local   res   The   

2.x

const MongoClient = require(‘mongodb‘).MongoClient;
const url = ‘mongodb://localhost:27017/test‘;
MongoClient.connect(url, function (err, db) {
if (err) throw new Error(err);
db.collection(‘myCollection‘).updateOne({ // Update method ‘updateOne‘
greetings: "Hellu" },
{ $set: { greetings: "Whut?" }},
function (err, result) {
if (err) throw new Error(err);
db.close(); // Don‘t forget to close the connection when you are done
});
});

3.x

const MongoClient = require(‘mongodb‘).MongoClient;

const url = ‘mongodb://localhost:27017/wang‘;

MongoClient.connect(url, function(err, client) {
    if(err) throw new Error(err);
    var db = client.db(‘wang‘);
    db.collection(‘myCollection‘).updateOne({ // Update method ‘updateOne‘
    greetings: "Hellu" },{ $set: {greetings: "Whut?"}},
                        function(err,result) {
                        if(err) throw new Error(err);
                        client.close(); // Don‘t forget to close the connection when you are done
                        });
});
                        
                        
                       

 

mongodb 3.x以上版本与mongodb 2.x版本语法区别

标签:get   when   err   wan   str   nec   local   res   The   

原文地址:https://www.cnblogs.com/lishidefengchen/p/12272688.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!