blobStore を使用して Appengine Datastore にファイル/画像をアップロードするにはどうすればよいですか? Google Cloud エンドポイントを使用しています。
これは私のモデルです:
class ProductImage(EndpointsModel):
_message_fields_schema = ('product', 'enable', 'image')
product = ndb.KeyProperty(Product)
image = ndb.BlobKeyProperty(required=True)
enable = ndb.BooleanProperty(default=True)
API Explorer からテストするにはどうすればよいですか? フロントエンドでは AngularJS を使用しています。