谷歌应用引擎或过滤器

发布于 2024-08-12 08:36:27 字数 394 浏览 2 评论 0原文

我想在谷歌应用程序引擎中做一个 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 技术交流群。

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

发布评论

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

评论(1

夕色琉璃 2024-08-19 08:36:27

我在这里找到了另一个线程,其中有一些答案:
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.

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