Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个节点服务器,直到现在我的数据库是本地的,但现在我需要它在 mongolab 上。
请告诉我如何连接到数据库?
转到https://mongolab.com/databases/YOUR_DATABASE_NAME
从 Mongolab 上的数据库页面复制 URI。
利用var db = mongojs('mongodb://USERNAME:PASSWORD@ds043497.mongolab.com:43497/heroku_app14986764', ['CollectionName']);
var db = mongojs('mongodb://USERNAME:PASSWORD@ds043497.mongolab.com:43497/heroku_app14986764', ['CollectionName']);
你会被连接起来。我没有测试这个。