我有基于它所描述的 mime 类型图像的集合中的文档:image/jpg、image/png、image/gif。
我希望能够指定一个$mime-type
as"image"
或"image/jpg"
以便我可以跨所有图像类型或跨特定子类型搜索文档。
let $mime-type-pattern := fn:concat($mime-type, "*")
let $mime-type-collection-uris := cts:collection-match($mime-type-pattern)
搜索$mime-type
"image"
将返回 URIs ("image/jpg", "image/png", "image/gif")
。我希望能够在任何这些集合中搜索文档。
搜索$mime-type
"image/jpg"
将返回 URI ("image/jpg")
。然后我只会搜索“image/jpg”集合的文档。
使用 Search API 进行搜索需要创建什么结构search:options
?