Node. js operations mongodb learning summary _ node. js

Source: Internet
Author: User
Tags install mongodb
This article mainly introduces node. js mongodb Operations Learning summary, this article provides mongodb to create a database, insert data, connect to the mongodb database and query data and other code instances, friends can refer to the next, preparation

1. Create a table to be read in mongodb

Create a database named Test

The Code is as follows:


Use extension test;


Insert data to the user table

The Code is as follows:


Db. user. insert ({
Name: 'flyoung ',
Age: '18 ',
Sex: true
});


2. Install node-mongodb-native

The Code is as follows:


Npm install mongodb


Ii. instance (node. js reads mongodb)

See node-mongodb-native documentation: https://github.com/mongodb/node-mongodb-native

The Code is as follows:


Var mongodb = require ('mongodb ');

Var server = new mongodb. Server ("127.0.0.1", 27017, {}); // local port 27017

New mongodb. Db ('mongotest', server, {}). open (function (error, client) {// Database: mongotest
If (error) throw error;
Var collection = new mongodb. Collection (client, 'user'); // table: user
Collection. find (function (error, cursor ){
Cursor. each (function (error, doc ){
If (doc ){
Console. log ("name:" + doc. name + "age:" + doc. age );
}
});
});
});


Run:

The Code is as follows:


Node mongodbTest. js


Result:

The Code is as follows:


Name: flyoung age: 18


Iii. Last words

Demo reference document for adding, deleting, modifying, and querying

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.