我正在玩 nodeJS 和 mongoJS。我已经成功查询了数据库并返回了一组数据:
var databaseUrl = "redirect"; // "username:password@example.com/mydb"
var collections = ["things", "reports"]
var db = require("mongojs").connect(databaseUrl, collections);
db.things.find({url: "google.com"}, function(err, things) {
if( err || !things) {
console.log("URL not Found");
}
else things.forEach( function(RedirectURL) {
console.log(RedirectURL);
} );
});
这将返回:
{ _id: 4fb2c304f2dc05fe12e8c428,
url: 'google.com',
redirect:
[ { url: 'www.goolge.com', weight: 10 },
{ url: 'www.google.co.uk', weight: 20 } ] }
我现在需要做的是选择数组的某些元素,例如redirect.weight 或redirect.url。
mongoJS 是否允许我轻松地做到这一点,还是有更好的方法?
任何指针都非常感谢!
里克