是否可以使用 SharePoint Web 服务检索具有给定 ID 的文件夹中的所有项目?
我正在使用 SharePoint 列表 Web 服务的 GetListItems 方法。我想获取给定文件夹中具有给定 ID(而不是路径)的所有项目。该方法允许您传入 QueryOptions xml,它允许您设置文件夹路径。但是,由于路径可以更改,这对我来说没有多大用处,如果能够使用文件夹的 ID 会更好。
有人知道该怎么做吗?
I'm using the GetListItems method of the SharePoint List web service. I would like to get all items in a given folder, with a given ID (not path). The method allows you to pass in QueryOptions xml, which lets you set the Folder path. However, since paths can change, this is not that useful to me, and it would be much better to be able to use the ID of the folder instead.
Does anybody know how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方法 - 一种方法是执行两个查询 - 首先,按 ID 查找文件夹(将“FileLeafRef”添加到所需字段列表中),然后进行递归查询,要求项目位于包含您在第一个周期中获得的 URL 的文件夹。
A workaround - one way you can do it, is to perform two queries - first, to find the folder by its ID (add 'FileLeafRef' to the list of needed fields), then make a recursive query, requiring the items to be in the folder with URL you got in the first cycle.