gpt4 book ai didi

python - 过滤 EVE REST API

转载 作者:行者123 更新时间:2023-11-28 22:28:21 25 4
gpt4 key购买 nike

如何在 url 请求中使用 OR/AND 过滤器(mongoDB)?

example.com/stats?where={"id":"1fd08077bd"} - 工作正常

但我还需要按 {"_created":{"$gte":"Thu, 14 Apr 2017 00:00:00 GMT"}} 进行过滤。

我试过&and

example.com/stats?where={"id":"1fd08077bd"}&and{"_created":{"$gte":"Thu, 14 Apr 2017 00:00:00 GMT"}}

但那是徒劳的。

最佳答案

试试这个:

example.com/stats?where={"$and":[{"_created":{"$gte":"Thu, 14 Apr 2017 00:00:00 GMT"}},{"id":"1fd08077bd"}]}

$and 应该是您的 where 过滤器的一部分。注意日期格式。应该与您的 eve 应用中使用的相同。

关于python - 过滤 EVE REST API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43609730/

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