我正在构建一个可以与大数据配合使用的Web应用程序。 我将使用Apache Storm挖掘Twitter数据,然后将它们保存在MongoDB数据库中。 同时,这些数据必须通过Node.js实时获取,并通过socket.io发送到我的前端。 是否存在通过Node.js实时查询MongoDB的方法? 感谢。
答案 0 :(得分:0)
我正在使用mongoDB开发项目,我使用mongodb npm module实时查询数据库。
首先,我获得了数据库中的集合列表:
//My server controller page
var MongoClient = require('mongodb').MongoClient
, assert = require('assert');
exports.getCollections = function(req,res){
mongoose.connection.db.collectionNames(function(err, names) {
if (err){
console.log(err)
} else {
res.status(200).send({collections: names});
}
});
};
在前端,我做一个Angular ng-repeat列出我的集合,然后当我点击集合名称时,我运行以下代码:
MongoClient.connect(url, function (err, db) {
assert.equal(null, err);
var collection = db.collection(req.body.collName);
collection.find({}).limit(req.body.limit).toArray(function (err, docs) {
if (err) {
console.log(err)
} else {
res.status(200).send({r: docs, count: docs.length});
db.close();
}
})
});
这是我的客户端角度代码:
//get the collection list upon page load
$http.get('collections')
.success(function(c){
$scope.collList = c.collections;
})
.error(function(err){
$scope.error = err;
});
//function run when collection is selected
$scope.doFind = function(coll){
$scope.collViewing = coll;
$http.post('/basicfind',{collName: coll,limit:$scope.limiter})
.success(function(data){
$scope.results = data.r;
$scope.countOfResults = data.count;
})
.error(function(err){
$scope.error = err.message;
});
};
希望有帮助,如果您需要我分享更多代码,请告诉我