App Engine 的过滤器与 GQL 方法
我的系统中有一个用户创建了一个我想要检索的实体。我尝试使用过滤器来执行此操作,因为它应该比调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
filter()
时,要求在字段名称和运算符之间有一个空格。要让您的filter()
调用按预期工作,您只需在等号前插入一个空格:When using
filter()
, you are required to have a space between the field name and the operator. To get yourfilter()
call to work as intended, you just need to insert a space before the equal sign: