在 tapkey 端点上使用 $filter
using $filter on tapkey endpoints
我正在调用此端点 /api/v1/Owners/{ownerAccountId}/BoundLocks
以获取与 ownerAccount 关联的 boundLocks,但我想根据标题过滤那些,
这就是我正在做的,但它仍然 returns 所有锁:
`${this.baseUrl}/owners/${this.ownerAccountId}/BoundLocks?filter=title eq '${lockId}`,
{
headers: {
'Authorization': `Bearer ${token}`
}
}
)
return boundLocks
这是原始代码吗?该代码使用 filter
而不是 $filter
作为查询参数,并且 lockId 似乎没有被正确引用。
我过滤不正确:
`${this.baseUrl}/owners/${this.ownerAccountId}/BoundLocks?$filter=title eq '${lockId}'`,
{
headers: {
'Authorization': `Bearer ${token}`
}
}
)
return boundLocks
我正在调用此端点 /api/v1/Owners/{ownerAccountId}/BoundLocks
以获取与 ownerAccount 关联的 boundLocks,但我想根据标题过滤那些,
这就是我正在做的,但它仍然 returns 所有锁:
`${this.baseUrl}/owners/${this.ownerAccountId}/BoundLocks?filter=title eq '${lockId}`,
{
headers: {
'Authorization': `Bearer ${token}`
}
}
)
return boundLocks
这是原始代码吗?该代码使用 filter
而不是 $filter
作为查询参数,并且 lockId 似乎没有被正确引用。
我过滤不正确:
`${this.baseUrl}/owners/${this.ownerAccountId}/BoundLocks?$filter=title eq '${lockId}'`,
{
headers: {
'Authorization': `Bearer ${token}`
}
}
)
return boundLocks