如何查找数组中作为架构中子元素的元素

发布于 2025-01-18 16:06:21 字数 406 浏览 0 评论 0原文

likes: {
        count:{type: Number, default: 0},
        authors:{type: [String], default: []}
    }

这是“喜欢”部分的架构。我想看看给定的用户名是否在authors数组中?如何针对这种情况创建查询?

await Entry.findOne({ 'likes.authors': { $in: user.username },_id:entryId } )

我创建了一个这样的查询,但我无法获取数据有一个数据,其中包含 entryId 并在 'likes.authors' 内包含 user.username

likes: {
        count:{type: Number, default: 0},
        authors:{type: [String], default: []}
    }

This is schema for the likes section. And I want to look if the given username is in the authors array or not ? How to create query for this situation?

await Entry.findOne({ 'likes.authors': { $in: user.username },_id: entryId } )

I have created a query like this but I couldn't get the data while I have a data which has entryId and contains user.username inside of 'likes.authors'.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掌心的温暖 2025-01-25 16:06:21

试试这个:

Entry.findOne({'likes.authors': {$elemMatch: {type: user.username}},_id:entryId});

try this:

Entry.findOne({'likes.authors': {$elemMatch: {type: user.username}},_id:entryId});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文