gpt4 book ai didi

list - 如何使用rest API获取基于不同ID的记录?

转载 作者:行者123 更新时间:2023-12-05 01:15:06 25 4
gpt4 key购买 nike

我需要使用基于多个 ID(主键)的 REST API 从列表中获取记录。

是否可以在单个 REST API 调用中传递多个 Id 并在单个 fetch 中获取所有记录?

REST API 中是否有类似“IN (1, 2, 3)”的内容?

最佳答案

根据Use OData query operations in SharePoint REST requests SharePoint REST 服务支持以下 OData 查询运算符:

enter image description here

如何通过 SharePoint REST 查询多个项目

由于 SharePoint REST 中没有 in 运算符,因此下面提供了一些等效项:

使用链式 andor 运算符显式指定项目:

/_api/web/lists/getByTitle(listTitle)/items?$filter=(ID eq 1) or (ID eq 2) or (ID eq 3)

使用 top 运算符在查询中指定项目限制:

/_api/web/lists/getByTitle(listTitle)/items?$top=3&$orderby=ID

使用 ltlegtge 运算符指定范围:

/_api/web/lists/getByTitle(listTitle)/items?$filter=(ID ge 1) and (ID le 3) 

关于list - 如何使用rest API获取基于不同ID的记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22342046/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com