5

我正在尝试对特定元素进行搜索,因此我的选项中有一个可搜索的表达式。我还想按此元素的值进行排序,因此我在 value 元素上创建了一个元素范围索引。以下是我的搜索选项,希望能让事情变得清晰:

 <options xmlns="http://marklogic.com/appservices/search">
        <term>
            <term-option>case-insensitive</term-option>
        </term>
        <debug>true</debug>
        <searchable-expression>/summary/name/value</searchable-expression>
        <sort-order type="xs:string" direction="ascending">
          <element ns="" name="value"/>
          <annotation>options for search institutions by name</annotation>
        </sort-order>
</options>

问题在于,当它进行排序时,它会添加另一个值节点(取自搜索:report id="SEARCH-FLWOR")

...order by xs:string(($result//value)[1]) ascending return $result)[1 to 50]

代替:

...order by xs:string(($result)[1]) ascending return $result)[1 to 50]

我如何防止它这样做?我无法更改可搜索表达式,因为“名称”元素有另一个我不想搜索的子元素。我也不能将排序顺序元素名称留空或将其设置为当前节点。看起来这很简单,但我还没有找到任何可以让它工作的东西。

帮助将不胜感激。

4

1 回答 1

4

您可以将<name>其用作可搜索表达式的目标元素,然后<value>通过添加以下内容将查询限制为仅查看内部<additional-query>

<options xmlns="http://marklogic.com/appservices/search">
        <term>
            <term-option>case-insensitive</term-option>
        </term>
        <debug>true</debug>
        <searchable-expression>/summary/name</searchable-expression>
        <additional-query>
          <cts:element-query xmlns:cts="http://marklogic.com/cts">
            <cts:element>value</cts:element>
            <cts:and-query/>
          </cts:element-query>
        </additional-query>
        <sort-order type="xs:string" direction="ascending">
          <element ns="" name="value"/>
          <annotation>options for search institutions by name</annotation>
        </sort-order>
</options>
于 2013-07-24T22:13:59.233 回答