SharePoint SPSiteDataQuery 根据文档扩展名(如 doc、pdf、xls、

发布于 2024-12-24 23:10:59 字数 125 浏览 1 评论 0原文

谁能告诉我如何使用基于文档扩展名的 SPSiteDataQuery 过滤数据?我不想显示所有文档,而只想显示那些具有 doc、docx、xls、xlsx、pdf 等扩展名的文档。

感谢您的帮助。

Can anyone tell me how can I filter data using SPSiteDataQuery based on document extensions? I don't want to show all documents but only those that have the extensions like doc, docx, xls, xlsx, pdf.

Thank you for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余生共白头 2024-12-31 23:10:59

您可以对 File_x0020_Type 列进行过滤:

<Where>
  <Eq>
    <FieldRef Name='File_x0020_Type' />
    <Value Type='Text'>doc</Value>
  </Eq>
</Where>

You could filter on the File_x0020_Type column:

<Where>
  <Eq>
    <FieldRef Name='File_x0020_Type' />
    <Value Type='Text'>doc</Value>
  </Eq>
</Where>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文