在 Python(GAE) 中,如何使用append在以下数据结构中设置“a”的值:
class Y(ndb.Model):
name = ndb.StringProperty()
hobby = ndb.StringProperty()
class X(ndb.Model):
a = ndb.StructuredProperty(Y, repeated=True)
使用下面的表单不起作用(在“数据存储查看器”中验证没有存储任何内容):
new_user_record = X()
new_user_record.a.append({'name':"john", 'hobby':"painting"})
new_user_record.put()
我做错了吗?什么是正确的方法?