質問

Does anyone know if there is a blob data type I can use for GAE's datastore list property?
I want to create the following entry that contains a list of blobs in the datastore, but I get errors.

class DataRecord(db.Model)
     data = db.ListProperty(blob)
役に立ちましたか?

解決

You can create a list property of db.Key or db.Blob instead

data = db.ListProperty(db.Blob) 
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top