使用嵌套将mongodb文档推入数组时遇到麻烦

时间:2018-11-08 00:06:46

标签: javascript node.js mongodb express

我在将嵌套文档推送到数组时遇到麻烦。目前,我的代码如下所示。我知道变量类别是不确定的。我为解决这一问题感到非常难过,因为我一度解决了它,但是我的电脑把水桶塞满了,所以我正在做旧的提交。

 db.collection('posts').find().toArray((err, result) => {
    var post = result.filter((post) => {
        return post.id == req.params._id
    })[0];
    var categories = [];
    for(var i=0; i > result.length; i++){
            for(var j=0;j>result[i].postCategories.length;j++){
                categories.push(result[i]postCategories[j]);
            }
        }
    categories = categories.filter( function( item, index, inputArray ) {
       return inputArray.indexOf(item) == index;
});

    res.render('admin/postedit', {
        postTitle: post.postTitle,
        postContent: post.postContent,
        postSlug: post.postSlug,
        categories: categories,
    });
});

0 个答案:

没有答案