如何正确发送 OData $filter 请求?

问题描述 投票:0回答:1

我正在使用 Swagger-UI 来

GET
使用
Id
Name
来记录表中的记录。

我从 api 服务收到错误:

enter image description here

如何正确格式化 OData

$filter
请求以成功查询此端点?

odata swagger-ui
1个回答
0
投票

您应该使用此查询来过滤 OData 中的数据

https://localhost.com:3000/users?$filter=id eq 3 和 name eq 'Bob'

© www.soinside.com 2019 - 2024. All rights reserved.