使用rest,根据ID从sharepoint列表中选择项目

时间:2013-06-28 20:53:53

标签: rest sharepoint

我想从sharepoint 2010列表中获取具有特定ID的项目列表。 我在javascript中使用以下查询查询 /_vti_bin/listdata.svc/Absences?$select=AbsenceDate,AbsenceTime&$filter=indexof(Id,'67 | 68 |')ne -1

我只想得到第67和68行的bacjk。

我回复说错了 找不到具有指定参数的位置0处的'indexof'的适用函数。考虑的函数是:indexof(System.String,System.String)。

任何想法?

1 个答案:

答案 0 :(得分:0)

这个article非常适合使用过滤器:

基本上你想要执行OR-Query,如下所示:  /_vti_bin/listdata.svc/Absences?$select=AbsenceDate,AbsenceTime&$filter=(Id%20eq%20'67 ')%20OR%20(ID%20当量%20'68')