モデルをシリアル化するにはどうすればよいですか。キー プロパティが繰り返されない場合、シリアル化できます。
モデルは次のようになります。
class Properties(ndb.Model):
propertyID = ndb.StringProperty(required=True)
propertyParentKey = ndb.KeyProperty()
propertyItems = ndb.KeyProperty(repeated=True)
私は何かをしたい
#get all in list
fetched = model.Properties.query().fetch()
#to a list of dicts
toSend = [p.to_dict() for p in fetched]
#Serialize
json.dumps(stuff=toSend)
どういうわけかモデルをシリアル化することは可能ですか? キープロパティのリストをどのように処理できますか?