In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-23 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.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.