我正在尝试使用mongodb获取当前登录用户的所有帖子。
使用Node&护照也是如此。
我的代码目前正在查找硬编码用户名的所有帖子。但是,我需要找到当前登录用户名的所有帖子。我的代码返回指定用户的帖子。我将如何制作它以显示当前登录用户的帖子? 谢谢!
app.get("/author", function(req, res){
Cards.find({"author.username": "AndrewLeonardi"}, function(err, author){
if (err){
console.log("ERROR!");
} else {
res.render("done.ejs", {Cards: author, currentUser: req.user});
}
});
});