给定一个NDB Datastore (Google AppEngine) 模型定义:
class Customer(ndb.Model):
products = ndb.StructuredProperty(Product, repeated=True)
模型 Customer 定义了一个重复的子模型,称为 Product。如何获取子模型的名称,在本例中为“产品”?
给定一个NDB Datastore (Google AppEngine) 模型定义:
class Customer(ndb.Model):
products = ndb.StructuredProperty(Product, repeated=True)
模型 Customer 定义了一个重复的子模型,称为 Product。如何获取子模型的名称,在本例中为“产品”?