如何使用Java Script连接mongodb服务器

时间:2015-07-21 07:27:59

标签: javascript mongodb

我对mongodb和java脚本都很新。 现在我需要使用java脚本连接到我的本地mongodb实例,以获取文档列表。

任何帮助? 提前致谢。

3 个答案:

答案 0 :(得分:0)

您可以使用mongoose连接到mongoDB数据库:http://mongoosejs.com/

答案 1 :(得分:0)

看看这里,

https://mongodb.github.io/node-mongodb-native/driver-articles/mongoclient.html

var MongoClient = require('mongodb').MongoClient
 , Server = require('mongodb').Server;

var mongoClient = new MongoClient(new Server('localhost', 27017));
mongoClient.open(function(err, mongoClient) {
  var db1 = mongoClient.db("mydb");

 mongoClient.close();
});

答案 2 :(得分:0)

为了连接到数据库,您需要将应用程序连接到服务器(不确定应用程序是否可以直接连接到数据库,但是从我学到的东西,似乎需要服务器端语言)。因此,如果您只想使用javascript连接数据库,可以考虑使用node.js + express连接到mongoDb。 I think this link is quite useful. I also learnt from this website.本网站教您如何从头开始,并且可以轻松遵循说明。如果您更喜欢将php用于服务器端,I just googled this website which might help.在我看来,php更容易学习,但如果您只需要基本的CRUD操作,那么提到的网站就足够了。