我正在寻找在片段中获取所有匹配项的方法。但我得到的结果集不完整。我已将 maxSnippetChars、maxMatches、perMatchTokens 值设置为最大值。文档的结构是一个对象数组,我想要路径所有满足匹配条件的匹配对象的属性(概要)。你能帮帮我吗?我正在使用以下代码:-
.where(jsearch.byExample({"$query":{Synopsis:{"$word":"word","$case-sensitive":false}}}))
.slice(0, Number.MAX_SAFE_INTEGER)
.map({
snippet: {
maxSnippetChars:Number.MAX_SAFE_INTEGER,
maxMatches:Number.MAX_SAFE_INTEGER,
perMatchTokens: Number.MAX_SAFE_INTEGER
}, extract: {paths: ['/ID','/FullName']}
}
)
.result() ```