App Engine 的过滤器与 GQL 方法

发布于 2024-09-10 17:10:32 字数 523 浏览 6 评论 0原文

我的系统中有一个用户创建了一个我想要检索的实体。我尝试使用过滤器来执行此操作,因为它应该比调用 gql 方法。但是,过滤器不会返回任何结果,并且 gql 可以正常工作。

randy_res = Vote.all().filter('created_by=', randy).fetch(limit=10)
randy_res = Vote.gql('WHERE created_by=:1', randy)

是否有任何原因导致过滤器返回空列表而gql调用返回正确的结果?

I have a user in my system who has created an entity which I'd like to retrieve. I'm attempting to do this using a filter because it's supposed to be faster than a call to the gql method. However, the filter returns no results and gql works.

randy_res = Vote.all().filter('created_by=', randy).fetch(limit=10)
randy_res = Vote.gql('WHERE created_by=:1', randy)

Is there any reason why the filter would return an empty list and the gql call would return the proper results?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似最初 2024-09-17 17:10:32

使用 filter() 时,要求在字段名称和运算符之间有一个空格。要让您的 filter() 调用按预期工作,您只需在等号前插入一个空格:

randy_res = Vote.all().filter('created_by =', randy).fetch(limit=10)

When using filter(), you are required to have a space between the field name and the operator. To get your filter() call to work as intended, you just need to insert a space before the equal sign:

randy_res = Vote.all().filter('created_by =', randy).fetch(limit=10)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文