在SharePoint 2016中使用REST检索计数相关的查找值

时间:2019-05-23 14:01:16

标签: rest sharepoint count lookup

我正在关注这篇文章: http://pawansatope.blogspot.com/2012/01/how-to-create-count-related-lookup.html 现在,我想使用REST API以编程方式获得相同的结果(即DepartmentTitle和NbOfEmployees)值。

我尝试了以下各种变化:

/ items $ select =标题,NbOfEmployees /...&$ expand = NbOfEmployees 但没有运气。

有人尝试过吗?

非常感谢!

1 个答案:

答案 0 :(得分:0)

我创建了查找字段“ NbOfEmployees”(部门(与计数相关)到员工数据列表),如下所示:

enter image description here

这是两个列表数据:

enter image description here

enter image description here

然后针对NbOfEmployees字段(部门计数),直接进入Rest API:

http://sp2016/_api/web/lists/getbyTitle('Department')/items?$select=NbOfEmployeesId,Title

enter image description here

实际上,该值是部门的实际计数值,无需在Rest中扩展。