NDB在重复的Expando StructuredProperty中查询GenericProperty

时间:2012-11-29 18:02:24

标签: google-app-engine python-2.7 app-engine-ndb

嘿伙计们试图弄清楚如何构建我的查询以下案例

首先我有一个模型定义

class Variant(ndb.Expando):
    test = ndb.StringProperty()


class Item(ndb.Model):
    test2 = ndb.StringProperty()
    variants = ndb.StructuredProperty(Variant, repeated=True)

variant = Variant(test="test", dynamic="a")
item = Item(test2="test", variants=[variant, ])
item.put()

然后查询东西..到目前为止我已经尝试了

dynamic = "dynamic"
Item.query(ndb.GenericProperty("variants.%s" % dynamic) == "a")
Item.query(Item._properties["variants.%s" % dynamic] == "a")
Item.query(getattr(Item.variants, dynamic) == "a")
Item.query(getattr(Item, "variants.%s" % dynamic) == "a")
Item.query(ndb.query.FilterNode("variants.%s" % dynamic, "=", "a"))

generic_prop = ndb.GenericProperty()
generic_prop._name = "variants.%s" % dynamic
Item.query(generic_prop == "a")

并且这些都不起作用。这应该是完全可能的,因为数据存储区中的属性名称是

variants.dynamic = ["a", ]

感谢您的帮助

3 个答案:

答案 0 :(得分:4)

使用GQL很容易:

Item.gql("WHERE variants.dynamic = 'a'").fetch()

这也有效:

s = StringProperty()
s._name = 'variants.dynamic')
Item.query(s == 'a').fetch()

请提交功能请求;然而,这将是一个平衡的行为。你想用什么语法?

<强>更新

同样适用于GenericProperty()或任何其他Property子类。

GenericProperty('variants.dynamic')被禁止的原因是为了防止人们做这样的黑客攻击:

class MyHack(ndb.Model):
  foo = StringProperty('bar.baz')

会混淆序列化和反序列化代码。

也许我们可以向Property添加一个跳过此检查的标志,但不允许在模型定义中使用该属性(它只允许在查询中使用)。

或许我们可以做这项工作(我认为这会很难):

Item.query(Item.variants.dynamic == 'a').fetch()

(仅当变体是Expando时)。

答案 1 :(得分:1)

你可以用一点魔法来做到这一点。

简短回答

variants_dynamic_property = ndb.GenericProperty()
variants_dynamic_property._name = 'variants.dynamic'
q = Item.query(variants_dynamic_property == 'a')

LONG ANSWER

由于您要查询GenericProperty,因此您需要创建一个docs状态,例如:

FlexEmployee.query(ndb.GenericProperty('location') == 'SF')

同样,在查询StucturedPropertydocs状态时,您可以使用该属性的属性,例如:

Contact.query(Contact.address.city == 'Amsterdam')

所以结合这些,你需要

Item.query(ndb.GenericProperty('variants.dynamic') == 'a')

但尝试通过ndb.GenericProperty('variants.dynamic')构建属性会导致以下异常:

  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/utils.py", line 136, in positional_wrapper
    return wrapped(*args, **kwds)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/model.py", line 2366, in __init__
    super(GenericProperty, self).__init__(name=name, **kwds)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/utils.py", line 136, in positional_wrapper
    return wrapped(*args, **kwds)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/model.py", line 765, in __init__
    raise ValueError('Name %r cannot contain period characters' % (name,))
ValueError: Name 'variants.dynamic' cannot contain period characters

但是你可以通过使用没有属性名的构造函数然后在事实之后设置名称来解决这个问题:

variants_dynamic_property = ndb.GenericProperty()
variants_dynamic_property._name = 'variants.dynamic'

答案 2 :(得分:0)

Hackish Solution

临时解决方案:在我们的案例中使用ComputedProperty进行查询:

(将以下内容添加到模型定义中)

computed_prop = ndb.ComputedProperty(lambda self: self.repeating_prop[0].sub_prop if self.repeating_prop else None)