使用 CAML 查询获取用户 URL

发布于 2024-09-13 18:16:09 字数 106 浏览 3 评论 0原文

我正在利用 CAML 查询将记录从列表过滤到数据表中。我的列表中有一个 SPUser 字段。

我正在努力获取 CAML 查询中每个用户的用户 ID。关于如何实现这一目标有什么见解吗?

I am making use of CAML Query to filter the records from list into DataTable. I have a SPUser Field in my list.

I am endeavoring to obtain the user id of each user in CAML Query. Any insights on how to achieve this?

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

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

发布评论

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

评论(1

晨曦÷微暖 2024-09-20 18:16:09

获取 SPUser.ID 的项目:

45

获取当前用户的项目:

< Value Type='Integer'>

获取用户显示名称的项目(列表中正常显示的名称):

姓氏、Raghu< /代码>

Get items for an SPUser.ID:

<Where><Eq><FieldRef Name='Person' LookupId='TRUE'/><Value Type='Integer'>45</Value></Eq></Where>

Get items for the current user:

<Where><Eq><FieldRef Name='Person' LookupId='TRUE'/><Value Type='Integer'><UserID/></Value></Eq></Where>

Get items for a user's display name (what is displayed normally in the list):

<Where><Eq><FieldRef Name='Person'/><Value Type='Text'>Lastname, Raghu</Value></Eq></Where>

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