应用程序引擎 StringListProperty

发布于 2024-09-08 21:07:21 字数 215 浏览 2 评论 0原文

我有一个如下所示的模型:

class test (db.Model) :
 tagList = StringListProperty()
 siteName = StringProperty()

我将标签存储在“tagList”中,并希望运行一个查询,在其中我可以获取在其 tagList 中包含特定标签的所有测试实体。

这可能吗?

I have a model which looks like this:

class test (db.Model) :
 tagList = StringListProperty()
 siteName = StringProperty()

I am storing tags in "tagList" and would like to run a query where I can get all test entities containing a particular tag in their tagList.

Is this possible?

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

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

发布评论

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

评论(1

临走之时 2024-09-15 21:07:21

只需使用相等运算符即可。

q = test.all()
q.filter("tagList =", "some_tag")
q.fetch()

对于列表属性,App Engine 将“等于”视为“包含”。

请参阅 http://code.google.com/appengine/docs /python/datastore/typesandpropertyclasses.html#ListProperty 了解详细信息。

Just use the equality operator.

q = test.all()
q.filter("tagList =", "some_tag")
q.fetch()

For list properties, App Engine treats 'equals' as 'contains'.

See http://code.google.com/appengine/docs/python/datastore/typesandpropertyclasses.html#ListProperty for details.

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