In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
NodeJs connects to the mongodb database and generates the corresponding URL according to the server, so write a method:
Var createURL = function () {var mongourl = ""; if (process.env.VCAP_SERVICES) {mongourl =.;} else {mongourl =.;} console.log ("config database url..."); return mongourl;} exports.url = createURL ()
To connect to the database in the model layer, you only need to call the modification method directly.
First add a reference:
Var urlFactory = require ('. / dbFactory')
Then, call directly:
Require ('mongodb') .connect (urlFactory.url, function (err, conn) {/ / read users collection conn.collection (' users', function (err, collection) {/ / do something});})
In this way, all the places where you need to connect to the database, you need to call the urlFactory.url, that is, the createURL method, which is definitely inefficient. So, I was going to write a cache or something and save the url temporarily so that I don't have to rejudge and regenerate it every time.
However, an inexplicable problem arises. No matter how you run the system, console.log ("config database url..."); output only once!
Why is that? The mechanism of NodeJs? Or is it exports? My guess is require ('mongodb'). Connect (urlFactory.url, fn); this kind of link is similar to session.
Write down a note here and study it later.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.