Sharepoint 休息 api 过滤器无法响应
Sharepoint rest api Filter not working on response
我正在尝试使用过滤器从其余 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
我希望根据“标题”列中的值过滤结果。
试试这个:
/_api/web/lists/getbytitle("SectionE")/items?$select=ID,Title&$filter=Title eq 'Test'
为了在 Rest API 中过滤一个字段值,这是一个常见的例子:
_api/web/lists/getbytitle('ListName')/items?$select=columnname&filter=columnname eq 'somevalue'
您可以在浏览器中查看返回的数据:
/_api/web/lists/getbytitle('SectionE')/items?items?$select=Id&$filter=Title eq 'Test'
$ 之前过滤器丢失。
我正在尝试使用过滤器从其余 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
我希望根据“标题”列中的值过滤结果。
试试这个:
/_api/web/lists/getbytitle("SectionE")/items?$select=ID,Title&$filter=Title eq 'Test'
为了在 Rest API 中过滤一个字段值,这是一个常见的例子:
_api/web/lists/getbytitle('ListName')/items?$select=columnname&filter=columnname eq 'somevalue'
您可以在浏览器中查看返回的数据:
/_api/web/lists/getbytitle('SectionE')/items?items?$select=Id&$filter=Title eq 'Test'
$ 之前过滤器丢失。