0

我在使用 appengine 时遇到问题,我似乎无法弄清楚:

from google.appengine.ext import ndb
from google.appengine.ext.ndb import polymodel

class Item(polymodel.PolyModel):
      name = ndb.StringProperty()
      type = ndb.StringProperty(choices=["Medical","Food"])
      sub_category_type = ndb.StringProperty()
      sub_category_sub_type = ndb.StringProperty()

class MedicalItem(Item):
      med_sub_type = ndb.StringProperty()
      can_split_item = ndb.BooleanProperty()

class ItemInHouse(ndb.Model):
      item = ndb.StructuredProperty(Item)
      amount_of_item = ndb.FloatProperty()

因此,使用上面的类,当我查询所有 ItemInHouse,然后我尝试访问那些具有 MedicalItem 的 iteminhouse 时,我无法获得 med_sub_type。那是:

itms = ItemInHouse.query(ItemInHouse.item.type == "Medical").fetch()
for itm in itms:
    self.response.out.write(itm.item.med_sub_type)

在 itm.item.med_sub_type 处引发错误。我什至尝试过:itm.item._values["med_sub_type"].b_val但这仍然会引发 AttributeError:'Item' 对象没有属性 'med_sub_type'。我确实在class_它拥有的属性ItemMedicalItem属性中看到了,但我无法访问它。有任何想法吗?

谢谢乔恩

4

1 回答 1

2

我担心您尝试做的事情可能是不可能的——我认为我没有预料到将 PolyModel 实例存储为 StructuredProperty 值。这能解释你所看到的吗?您可能想在 NDB 项目跟踪器上提交功能请求,但我不能保证它会被实施。

于 2013-01-21T16:51:46.200 回答