Sharepoint CAML 查询在 ID 字段上搜索文件夹
在 WSS3 中使用 CAML,我尝试通过文件夹 ID 字段搜索文件夹。当搜索“文件夹”内容类型时,这会导致“未定义”,但搜索常规项目时效果很好。
这是我的代码片段:
<Query><Where><Eq><FieldRef Name='ID'/><Value type='Integer'>"+folderIDtoFind+"</Value></Eq></Where></Query>
...
<QueryOptions><ViewAttributes Scope='Recursive' /></QueryOptions>
对于如何通过 ID 查找文件夹有什么建议吗?
Using CAML in WSS3, I am trying to search for a folder by the folder ID field. This results in 'undefined' when searching the 'Folder' content type but works fine searching for a regular item.
Here is a snippet of my code:
<Query><Where><Eq><FieldRef Name='ID'/><Value type='Integer'>"+folderIDtoFind+"</Value></Eq></Where></Query>
...
<QueryOptions><ViewAttributes Scope='Recursive' /></QueryOptions>
Any suggestions for how I can find folders by their id's?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
另外,请尝试
获取CAML 构建器工具的副本...
Try
Also, grab a copy of A CAML builder tool...