是否可以将 Django 与 Qooxdoo 框架一起使用?
伙计们,我想使用 Django 作为我的后端框架,使用 qooxdoo 作为前端框架。
这样做实用吗?
有人尝试这样做吗?
他们是怎么做到的?
链接和指针会很好。
迦特
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
伙计们,我想使用 Django 作为我的后端框架,使用 qooxdoo 作为前端框架。
这样做实用吗?
有人尝试这样做吗?
他们是怎么做到的?
链接和指针会很好。
迦特
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我没有使用 Django 和 qooxdoo 的直接经验,但对“实用吗?”这个问题的一般答案是:是的:)。虽然 Django 的默认渲染行为是生成 HTML(这不适合像使用 qooxdoo 构建的单页应用程序),但很容易切换到在请求上返回例如 Json,这是客户端与服务器之间通信的常见格式。一个 qooxdoo 前端和一个服务器。他们只是交换数据。
有人尝试这样做吗? - 是的,但他们没有除了前面提到的 Json 数据交换之外,还提供了有关如何使用 RPC4Django。
AFAIK,没有更深入的 Django 集成,例如将 qooxdoo 与服务器上的 Django 视图交互(如 dojango)。
希望这有帮助。
更新:
I have no direct experience using Django and qooxdoo, but the general answer to the question "Is it practical?" is: yes :). Although Django's default rendering behaviour is to produce HTML (which is unsuitable for a single page application like the ones you build with qooxdoo), it's easy to switch to returning e.g. Json on requests, which is a common format for the client-server communication between a qooxdoo frontend and a server. They just exchange data.
Has anyone tried to do this? - Yes, but they don't give much information on how, other than the before mentioned Json data exchange, implementing a Json RPC server in Django using RPC4Django.
AFAIK, there is no deeper Django integration, e.g. interfacing qooxdoo with Django views on the server (like dojango).
Hope this helps.
Update: