塔架和 Flex 3
有人使用 Python/Pylons 作为 Flex 3 应用程序的服务器后端吗?有谁知道这会发挥多大作用?我读过 Bruce Eckel 关于将 Flex 3 与 Twisted 绑定的文章,并且我已经完成了 Twisted 编程,但对于只是一个 Web 服务,我认为 Pylons 更易于使用。
预先感谢,
道格
Has anyone used Python/Pylons as the server backend for a Flex 3 application? Does anyone have any thoughts on how well this would work? I read Bruce Eckel's article about tying Flex 3 to Twisted, and I've done Twisted programming, but for just a web service I think Pylons is simpler to use.
Thanks in advance,
Doug
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在开发一个 webapp,它的客户端 UI 是用 Flex 3 编码的,后端是 Pylons 应用程序。我们的客户端使用 HTTP GET 和 POST 请求与后端通信,POST 请求正文和所有响应正文都携带 JSON 格式的数据。运行良好,只是有几个问题:
I'm working on webapp which has client-side UI coded in Flex 3 and backend is Pylons app. Our client communicates with backend using HTTP GET and POST requests, POST request bodies and all response bodies carry data in JSON format. Works well, just few gotchas:
X-HTTP-Method-Override
header. Then we have some extra routes in routing configuration that handle these requests and treat them as normal PUTs and GETs.