我想搜索文檔的文檔屬性。我只有加載了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")
,那麼它在整個文檔中查找這個單詞。但是,我只想搜索文檔屬性中的作者標籤。同樣我也想在其他屬性中搜索。
我也試過這樣: -
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
但是,這是行不通的。請幫忙。