使用环回过滤GET

时间:2018-04-28 16:06:30

标签: loopbackjs loopback

我正在尝试使用特定过滤器获取用户(例如电子邮件等于“e@e.e”)。
说明Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string ({"something":"value"}),但输入{"email":"ju@ju.ju"}只会获取所有用户,而不仅仅是这个用户 我做错了什么?

1 个答案:

答案 0 :(得分:2)

您应该发布您的查询网址,如下所示:http://localhost:3000/api/Model?filter=%7B%20%22where%22%3A%20%7B%22name%22%3A%20%22icecream%22%7D%20%7D

但如果我不得不猜测,您在对象中没有使用filterwhere键。

{"filter": {"key": "value"} }不正确

{"where": {"key": "value"} }更正 api资源管理器 (因为它会为您提供filter), 不正确其他

{"filter": {"where": {"key": "value"} } }更正