代码之家  ›  专栏  ›  技术社区  ›  Magnus Johansson

是否有方法仅从SharePoint Web服务搜索返回文档?

  •  1
  • Magnus Johansson  · 技术社区  · 15 年前

    如果查询 SharePoint Web Service Search ,是否有方法发送参数以便它只返回文档?

    当然,可以使用isdocument列筛选结果,但在查询期间是否可以?

    2 回复  |  直到 14 年前
        1
  •  1
  •   Lars Fastrup    15 年前

    “在查询期间”是什么意思?对isdocument列提供过滤器应用查询时间!这是返回文档的一种方法-另一种方法是只为文档创建搜索范围。但同样,您需要在查询中指定它。

        2
  •  0
  •   Tomso    14 年前

    我想您可以在查询和查询中使用begins with filhter来查找以documente content type id开头的所有项:

    <Where>
        <BeginsWith>
                <FieldRef Name='contentTypeId'/>
                <Value Type='Text'>0x0101</Value>
         </BeginsWith>
    </Where>
    

    看见 here 有关内容类型ID和 here 是如何使用查询的。