从 GAE 中的部署应用程序上传和下载数据时出现问题

发布于 2024-10-19 22:09:06 字数 741 浏览 2 评论 0原文

文件“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏雨凉 2024-10-26 22:09:06

上传时,--url 参数必须链接到应用程序的remote_api,如下所示:

 appcfg.py upload_data --application=myapp --kind=Survey --filename="C:\myapp\src\test.csv" --url=http://myapp.appspot.com/_ah/remote_api

When uploading, the --url parameter must link to the remote_api of your application, like so:

 appcfg.py upload_data --application=myapp --kind=Survey --filename="C:\myapp\src\test.csv" --url=http://myapp.appspot.com/_ah/remote_api
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文