将数据从 Flex 发送到 Python (GAE)
我正在开发一个运行 Google App Engine (Python) 的项目,该项目将各种用户详细信息存储在 GAE 的数据存储区中。我有用户可以使用的 Flex 内容,完成后 Flex 应用程序需要将数据发送到 Python 后端以“标记”用户不执行该任务。有什么建议吗?
I'm working on a project that runs off Google App Engine (Python) which stores various user details inside GAE's datastore. I have Flex content which users can use and once done the Flex app needs to send data to the Python backend to 'mark' the user off for that task. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
让 flex 向 Python 服务器发送请求。可以是表单帖子或 JSON 数据或其他任何形式。
Have flex send a request to the Python server. COuld be a form post or JSON data or whatever.
看看以下内容:
http://fernandoacorreia.wordpress.com/2008/07/ 15/flex-and-python-project/
它可能会有所帮助。
Have a look on the following:
http://fernandoacorreia.wordpress.com/2008/07/15/flex-and-python-project/
It may help.
您可以使用 django 和 Tipfy 的 pyamf 网关。我有一个 类似的开源项目,在 github 上有 django-flex 通信,所以您也可以查看。
You can use pyamf gateway for django and tipfy. I have a similar open source project with django-flex communication resting at github, so you can also check out.