通过mongojs连接到monogolab中的数据库

时间:2014-02-18 07:28:59

标签: node.js mlab mongojs

我有一个节点服务器,直到现在我的数据库是本地的,但现在我需要它在mongolab上。

请告诉我如何连接数据库?

1 个答案:

答案 0 :(得分:1)

  1. 转到 https://mongolab.com/databases/YOUR_DATABASE_NAME

  2. Copy the URI from your database's page on Mongolab.

  3. 使用var db = mongojs('mongodb://USERNAME:PASSWORD@ds043497.mongolab.com:43497/heroku_app14986764', ['CollectionName']);

  4. 你会被联系起来。我没有测试过这个。