从 GAE 中的部署应用程序上传和下载数据时出现问题
文件“C:\Program Files\Google\google_appengine\google\net\proto\ProtocolBuffer .py”,第 436 行,skipData 中 引发 ProtocolBufferDecodeError,“已损坏” google.net.proto.ProtocolBuffer.ProtocolBufferDecodeError:已损坏
有什么问题以及如何修复它?可能是下载的不好吗?
当我将数据上传到 GAE 中的部署应用程序时,出现此错误。
我在我的应用程序中使用此命令:
builtins:
- remote_api: on
用于从开发下载数据的命令:
appcfg.py download_data --application=,yapp --kind=Survey --url="http://localhost:9999/_ah/remote_api" --filename="C:\myapp\src\test.csv"
这是我用于将数据上传到部署的命令:
appcfg.py upload_data --application=myapp --kind=Survey --filename="C:\myapp\src\test.csv" --url=http://myapp.appspot.com
myapp 不是实际名称...
File "C:\Program Files\Google\google_appengine\google\net\proto\ProtocolBuffer
.py", line 436, in skipData
raise ProtocolBufferDecodeError, "corrupted"
google.net.proto.ProtocolBuffer.ProtocolBufferDecodeError: corrupted
What's the problem and how to fix it? maybe the download is not ok?
I get this error when im uploading data to my deplying app in GAE.
I use this in my app:
builtins:
- remote_api: on
command for downloading data from developement:
appcfg.py download_data --application=,yapp --kind=Survey --url="http://localhost:9999/_ah/remote_api" --filename="C:\myapp\src\test.csv"
this is the command I use to upload data to deployment:
appcfg.py upload_data --application=myapp --kind=Survey --filename="C:\myapp\src\test.csv" --url=http://myapp.appspot.com
myapp is not the actual name...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
上传时,--url 参数必须链接到应用程序的remote_api,如下所示:
When uploading, the --url parameter must link to the remote_api of your application, like so: