谷歌应用引擎或过滤器
我想在谷歌应用程序引擎中做一个 OR 过滤器。
例如:
class MyModel(db.Model):
name = db.StringPropery()
description = db. StringPropery()
以下内容将返回名称 = steve AND 描述 =“某些文本”的所有“MyModel”实例
results = MyModel.all().filter("name =", "steve").filter("description =","some text").fetch(10)
我可以使用什么语法将其更改为 OR 语句?或者我是否需要执行两个查询,然后以某种方式合并它们?
I want to do an OR filter within google app engine.
For example:
class MyModel(db.Model):
name = db.StringPropery()
description = db. StringPropery()
The following will return all "MyModel" instances with name = steve AND description = "some text"
results = MyModel.all().filter("name =", "steve").filter("description =","some text").fetch(10)
What syntax do I use to change this to an OR statement? Or do I need to do two queries and then merge them somehow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在这里找到了另一个线程,其中有一些答案:
app-engine-datastore-does-not-support-operator-or< /a>
不确定如何将其标记为重复项。对不起。
I found another thread with some answers here:
app-engine-datastore-does-not-support-operator-or
Not sure how to mark this as a duplicate. Sorry.