塔架和 Flex 3

发布于 2024-08-19 20:21:26 字数 181 浏览 7 评论 0原文

有人使用 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 技术交流群。

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

发布评论

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

评论(1

鸩远一方 2024-08-26 20:21:26

我正在开发一个 webapp,它的客户端 UI 是用 Flex 3 编码的,后端是 Pylons 应用程序。我们的客户端使用 HTTP GET 和 POST 请求与后端通信,POST 请求正文和所有响应正文都携带 JSON 格式的数据。运行良好,只是有几个问题:

  • Flex 应用程序无法执行 PUT 和 DELETE 请求。我们通过执行 POST 请求并在 X-HTTP-Method-Override 标头中指定“真实”预期方法来解决此问题。然后我们在路由配置中有一些额外的路由来处理这些请求并将它们视为正常的 PUT 和 GET。
  • Flex 应用程序可以发送自定义 HTTP 标头,但无法读取从服务器接收的自定义标头(在 IE 上可以,但不能在 Firefox 和 Chrome、IIRC 上)。

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:

  • Flex apps cannot do PUT and DELETE requests. We work around this by doing POST requests and specifying the "real" intended method in 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.
  • Flex apps can send custom HTTP headers but cannot read custom headers received from server (well they can on IE, but cannot on Firefox and Chrome, IIRC).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文