我有几部法典,将所有文件从收集中删除,并放在网页上。 简略版本就是这样:
var mongodb = require("mongodb"),
express = require("express"),
mongoServer = new mongodb.Server( localhost , 27017),
dbConnector = new mongodb.Db( systemMonitor , mongoServer),
db;
var app = new express();
app.get( /drives , function(req, res) {
db.collection( driveInfo , function(err, collection) {
if (err) throw err;
collection.find({}, function(err, documents) {
res.send(documents);
});
});
});
dbConnector.open(function(err, opendb) {
if (err) throw err;
db = opendb;
app.listen(80);
});
我有一份载有长篇文件清单的自动信息资料收集。 每一份文件都载有密封物体。 我想做的是,在有人访问浏览器/浏览器时,把整个收藏品印制成son子,以便我能够 later笑以后(一纸pi的gin首)一切。
然而,我有一处错误,说“TypeError:将循环结构改变为JSON”。 页数中这一行码的错误:
collection.find({}, function(err, documents) {
res.send(documents);
});
I m unsure what the problem is, or where the self-reference is. Am I not querying the collection properly?