gpt4 book ai didi

node.js - 如何根据 Loopback 中的标签数组过滤订阅者

转载 作者:行者123 更新时间:2023-11-29 12:51:38 25 4
gpt4 key购买 nike

我有两个模型 - subscriberstags

示例数据:

{
subscribers: [
{
name: "User 1",
tags: ["a","b"]
},
{
name: "User 2",
tags: ["c","d"]
}
]
}

我想根据标签过滤订阅者。

  • 如果我给 ab 标签,用户 1 应该列出
  • 如果我给 ac 标签,用户 1 和用户 2 都应该列出

这是我尝试过的:

方法一:

tagssubscribers 模型中的一列,数据类型为数组

/subscribers/?filter={"where":{"tags":{"inq":["a","b"]}}} // doesn't work

方法二:

创建了一个单独的表 tags 并设置 subscribers 有很多 tags

/subscribers/?filter={"where":{"tags":{"inq":["a","b"]}}} // doesn't work

如何在不编写自定义方法的情况下在 Loopback 中实现这一点?

我将 Postgresql 作为连接器

最佳答案

更新

loopback docs 中所述你应该使用 inq 而不是 In

The inq operator checks whether the value of the specified property matches any of the values provided in an array. The general syntax is: {where: { property: { inq: [val1, val2, ...]}}}

来自这里:

/subscribers/?filter={"where":{"tags":{"In":["a","b"]}}}

对此:

/subscribers/?filter={"where":{"tags":{"inq":["a","b"]}}}

关于node.js - 如何根据 Loopback 中的标签数组过滤订阅者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52640158/

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