我正在开发一个带有node,express,mongo的项目,我正试图从db中查询我的所有主题。
我相信我的代码是正确的但是当我在浏览器中运行应用程序时,我的console.log没有显示我的输出。
这是我的路线代码:
// show all topics
router.get('/', function(req, res, next) {
var db = req.db;
console.log('Loggin DB: ' + db);
Topic.find({}).exec(function(err, topics)
{
if(err)
{
return next(err)
console.log("Logging the error: " + err);
console.log('There were no topics based on your current location');
}
else
{
console.log('Whoop whoop we found topics near your location');
//renders the data on the page
res.render('index', { topic : topic } );
console.log("Logging data: " + topic);
console.log("Logging data title: " + topic.topicTitle);
}
});
});
答案 0 :(得分:1)
您的主题 s
Topic.find({}).exec(function(err, topics)
然后你正在使用主题(它不存在)
res.render('index', { topic : topic } );
console.log("Logging data: " + topic);
console.log("Logging data title: " + topic.topicTitle);
答案 1 :(得分:1)
您正在服务器端使用console.log。这不会在浏览器的客户端显示,而是在运行节点js的命令提示符/终端中显示。