我想搜索文档的文档属性。我只在 Marklogic 中加载了文档,并且没有 xml 文件。我已关闭内容处理。现在我想搜索元数据(存在于 中xdmp:document-properties(uri)
)
我在文档中有以下属性:-
<?xml version="1.0" encoding="UTF-8"?>
<prop:properties xmlns:prop="http://marklogic.com/xdmp/property">
<uploaded>true</uploaded>
<OntologyResourceTypeValue>DOCUMENT</OntologyResourceTypeValue>
<content-type>application/pdf</content-type>
<filter-capabilities>text subfiles HD-HTML</filter-capabilities>
<CreationDate>2002/12/05 09:44:29Z</CreationDate>
<ModDate>2002/12/05 12:02:27+02'00'</ModDate>
<Producer>Acrobat Distiller 5.0 (Windows)</Producer>
<Author>Administrator</Author>
<Creator>PScript5.dll Version 5.2</Creator>
</prop:properties>
现在我只想搜索作者而不是其他属性。如果我正在使用,search:search("Administrator")
那么它会在整个文档中寻找这个词。但是,我只想在文档属性中搜索 Author 标签。同样,我也想搜索其他属性。
我也试过这个: -
let $options := <options xmlns="http://marklogic.com/appservices/search">
<constraint name="author">
<properties name="prop:Author"/>
</constraint>
</options>
let $results := search:search("author:Administrator", $options, 1, 10)
return
$results
但是,这不起作用。请帮忙。