我需要在loopback中过滤一个字符串数组。我有以下模型。
{
...
"type": ["string"],
...
}
我使用的过滤器是{"where":{"type":["filter string"]}}
和{"type":["filter string"]}
,但两者都不起作用并返回所有条目。
请帮忙。提前谢谢。
答案 0 :(得分:2)
请使用不带方括号的{"where":{"type":"filter string"}}
。由于type
被定义为字符串数组,因此该查询将返回filter string
作为任何索引元素的条目。