卡布奇诺 Django 集成
大家好,有人将卡布奇诺与 django 集成在一起吗? 我想使用 cappuccino 作为前端,django 作为后端,并通过 CFHTTPRequest / Json 进行通信。
我做了以下事情: 将卡布奇诺应用程序复制到我的 django 应用程序的模板文件夹中。然后使用render_to_response 到cappuccino 生成的index.html。
不幸的是什么也没发生。
Hi does anyone integrated cappuccino with django.
I wanted to use cappuccino as a front-end and django as a backend and communicate via CFHTTPRequest / Json.
I did the following:
copy the the cappuccino app to the templates folder of my django app. Then used a render_to_response to the index.html generated by cappuccino.
Unfortunately nothing happens.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不知道你想做什么,但我确实使用 Cappuccino 和 Django 作为后端。我使用 Piston 框架公开标准 RESTful API,然后 Cappuccino 客户端使用常规 CPURLRequest 和 CPURLConnection 类调用该 API。
Cappuccino 应用程序作为常规静态文件,index.html Cappuccino 为您提供 Django 模板。
Not sure what you're trying to do but I do use Cappuccino with Django for the backend. I used the Piston framework to expose a standard RESTful API which the Cappuccino client then calls into using the regular CPURLRequest and CPURLConnection classes.
The Cappuccino app is served as regular static files with the index.html Cappuccino gives you as a Django template.