1

以下是文档中的 StructuredProperty示例:

class Address(ndb.Model):
    type = ndb.StringProperty() # E.g., 'home', 'work'
    street = ndb.StringProperty()
    city = ndb.StringProperty()

class Contact(ndb.Model):
    name = ndb.StringProperty()
    addresses = ndb.StructuredProperty(Address, repeated=True)

guido = Contact(name='Guido',
                addresses=[Address(type='home',
                                   city='Amsterdam'),
                           Address(type='work',
                                   street='Spear St',
                                   city='SF')])

guido.put()

想象一下,Guido 暂时在马里的廷巴克图市工作。我将如何检索和更新他的工作地址?

谢谢。

4

1 回答 1

3

我会尝试这样的事情。

for address in guido.addresses:
    if address.type == 'work':
        address.street = "Main Street"
        address.city = "Timbuktu"

guido.put()

编辑 添加了一个冒号

于 2012-09-16T10:32:09.010 回答