我在使用 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_
它拥有的属性Item
和MedicalItem
属性中看到了,但我无法访问它。有任何想法吗?
谢谢乔恩