我们可以将文档从 Flex 上传到 Google 应用引擎 Blobstore 吗?
我正在使用 Java 进行 Flex 工作。我对在 Google 应用引擎中运行的 Flex 应用程序有疑问。我们可以将文档从 Flex 客户端上传到 Google 应用程序吗?引擎 blob 存储区?
I am working in Flex with Java. I have a question about Flex application running in Google app engine. Can we upload documents from a Flex client to Google app. engine blobstore?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,你可以。
如果您使用 Java(或 Python)编写了服务器端代码,并使用 HTTP 将文件上传到服务器。我的意思是需要有一个服务器端代码,因为你不能直接从 Flex 访问数据库。
Yes, you can.
If you have written server side code using Java (or Python), and using HTTP for uploading files to server. I mean that there is need to be an server side code, because you can't access database directly from Flex.
如果您可以在 Flex 中创建并提交多部分表单,则可以上传到 blobstore。从 Flex 的角度来看,将文件上传到 blobstore 和将文件上传到其他地方没有区别。您无需访问 Flex 中的 blobstore - 您只需上传到服务器端代码提供的 URL。
如果您尝试过此操作并遇到特定问题,您应该更新您的帖子并提供详细信息。
If you can create and submit multipart forms in Flex, you can upload to the blobstore. From Flex's point of view, there is no difference between uploading files to the blobstore and uploading them anywhere else. You do not access the blobstore in Flex - you just upload to a URL provided by your server-side code.
If you've tried this and are having specific problems, you should update your post with details.