gpt4 book ai didi

javascript - 将 where 与 mongodb 一起使用

转载 作者:行者123 更新时间:2023-12-01 00:32:06 26 4
gpt4 key购买 nike

我正在开发一个 Node + mongodb 项目。我想过滤所有事件的配置文件。这是我的代码。

  async getAllProfiles() {
const profiles = await Profile
.find({ $where: () => activeProfile: true })
.populate('user');
return profiles;
}

这没有按预期工作。我该如何解决这个问题?

最佳答案

你需要用它来运行 $where 。 https://docs.mongodb.com/manual/reference/operator/query/where/#example

  async getAllProfiles() {
const profiles = await Profile
.find({$where:"this.activeProfile==true"})
.populate('user');
return profiles;
}

但是你可以在 find 中运行 cond,而不是使用 $where,会更快

  async getAllProfiles() {
const profiles = await Profile
.find({activeProfile: true})
.populate('user');
return profiles;
}

关于javascript - 将 where 与 mongodb 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58445096/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com