Two forms of Mongoose connection database

Source: Internet
Author: User

No nonsense, direct

----------------------

。 If your application uses only one database, you should use Mongoose.connect. If you need to create additional connections, use Mongoose.createconnection. var mongoose = require (' Mongoose '); Mongoose.connect (Mongodb://localhost/chihuo);

The Mongoose.createconnection return value is a new connection. If you open a separate connection using mongoose.createconnection (), but trying to access the model Mongoose.model ("ModelName ') does not work as expected because it is not connected to an active database connection. In this scenario, you access your model by creating a connection:

var conn = mongoose.createconnection (' Your connection string ')   = Conn.model ('modelname ', Schema)   , m = new MyModel; M.save ();//Works  VS    var conn = mongoose.createconnection (' Your connection St Ring ')     , MyModel = Mongoose.model (' modelname ', Schema)     , m = new MyModel;  M.save ();  

Come here first.

Two forms of Mongoose connection database

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.