Sharepoint Rest API筛选器不适用于响应

时间:2019-06-17 09:46:07

标签: sharepoint sharepoint-online

我正在尝试使用过滤器从rest api获取数据,但不知何故。

我正在尝试以下不同的组合,例如下面的其余端点:

/_api/web/lists/getbytitle('SectionE')/items?items?$select=Id&filter=Title eq 'Test'

/_api/web/lists/getbytitle('SectionE')/items?items?$select=Id&filter=Title%20eq%20%27Test%27

我希望根据“标题”列中的值对结果进行过滤。

3 个答案:

答案 0 :(得分:1)

尝试一下:

/_api/web/lists/getbytitle("SectionE")/items?$select=ID,Title&$filter=Title eq 'Test'

答案 1 :(得分:0)

要在Rest API中过滤字段值,下面是一个常见示例:

_api/web/lists/getbytitle('ListName')/items?$select=columnname&filter=columnname eq 'somevalue'

您可以在浏览器中签入以查看返回的数据:

enter image description here

答案 2 :(得分:0)

/_api/web/lists/getbytitle('SectionE')/items?items?$select=Id&$filter=Title eq 'Test'

缺少过滤器之前的$。