应用程序引擎 StringListProperty
我有一个如下所示的模型:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用相等运算符即可。
对于列表属性,App Engine 将“等于”视为“包含”。
请参阅 http://code.google.com/appengine/docs /python/datastore/typesandpropertyclasses.html#ListProperty 了解详细信息。
Just use the equality operator.
For list properties, App Engine treats 'equals' as 'contains'.
See http://code.google.com/appengine/docs/python/datastore/typesandpropertyclasses.html#ListProperty for details.