• mongodb 用户点赞功能理论实现[转载]


    在 posts(文章) 集合中储存对该文章点赞的用户的 _id 的数组,例如:

    // posts
    {
        _id: ObjectID('4e7020cb7cac81af7136236b'),
        users_like_this_post: [
            ObjectID('4e7020cb7cac81af71362361'),
            ObjectID('4e7020cb7cac81af71362362')
        ]
    }

    查对一个文章点赞的用户:

    post = db.posts.findOne({_id: ObjectID('4e7020cb7cac81af7136236b')});
    console.log(post.users_like_this_post);

    查一个文章的点赞数量:

    post = db.posts.findOne({_id: ObjectID('4e7020cb7cac81af7136236b')});
    console.log(post.users_like_this_post.length);
    

      

    查点赞过 100 的文章:

    posts = db.posts.find({'users_like_this_post.100': {$exists: true}});
    

      

    查 user 点赞过的文章:

    posts = db.posts.find({users_like_this_post: user._id});
    

      

    user 对 post 点赞:

    db.posts.update({_id: post._id}, {$addToSet: {users_like_this_post: user._id}});
    

      

    user 对 post 取消点赞:

    db.posts.update({_id: post._id}, {$pull: {users_like_this_post: user._id}});
    

      

    参考 https://segmentfault.com/q/1010000000663821
  • 相关阅读:
    二分图匹配详解
    树状数组略解
    质数算法略解
    主席树详解
    线段树略解
    【题解】Luogu P2073 送花
    【题解】Luogu P1533 可怜的狗狗
    分块入门
    【题解】Luogu CF86D Powerful array
    【题解】Luogu UVA12345 Dynamic len(set(a[L:R]))
  • 原文地址:https://www.cnblogs.com/dupd/p/9062906.html
Copyright © 2020-2023  润新知