将 Lift 与其他前端 Web 框架一起使用?
任何人都可以评论一下使用 Lift 与其他前端 Web 框架(例如 Rails、PHP 等)生成片段/部分页面的经验吗?如果有,痛点是什么(如果有)?即使您还没有尝试过:可能有用的概念还是这会是一个错误?
Can anyone comment on experience using Lift with other front end web frameworks (e.g. Rails, PHP, etc) to generate snippets/partial pages? If so, what were the pain points (if any)? Even if you haven't tried it: potentially useful concept or would this be a mistake?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Lift 现在实际上正在做一个 Ruby 变体,请检查 google Groups。
另外,PHP 和 Rails 都不是后端框架。 PHP 是一种语言,但它们都不适用于后端。它们或多或少都是基于请求周期的,这使得它们都不适用于后端系统。
lift/scala 是从前端到后端(actors、akka 等)的所有方式。
Lift is actually doing a Ruby-variant now, check the google Groups.
Also PHP and Rails are both not backend frameworks. PHP is a language for one, but both of them are not usable for backends. They all are more or less request-cycle-based, that makes them both not usable for backend systems.
lift/scala is the way to go for everything from frontend to backend (actors, akka, etc).
我个人会使用 lift 作为后端和前端,但你可以使用 lift 作为休息服务并使用任何前端,如 GWT、纯 jQuery 等
I would personally use lift for back end as well as front end, but you could use lift as a rest service and use any front end like GWT, plain jQuery, etc
我目前使用 Lift 作为门户框架,并在同一个 tomcat 容器内使用各种 GWT 应用程序。
身份验证通过 lift 进行,并调用隐藏的 GWT 应用程序表单来设置会话 ID(用户数据位于同一个 Postgres 数据库中)。
这是两全其美的 - Lift 让我创建一个稳定的、支持 ORM 的网站,其中已经完成了大量管道,并且对于所有深入的数据分析(它是一个与财务相关的应用程序),我链接到 GWT 应用程序 - 主要用于单元小部件/ 图表。
I'm currently using Lift as a portal framework, with various GWT applications inside the same tomcat container.
Authentication happens via lift, and calls a hidden GWT app form to set a session id (the user data is in the same Postgres db).
It's the best of both worlds - Lift lets me create a stable, ORM enabled website with lots of piping already done, and for all in depth data analysis (it's a finance related app), I link to the GWT app - mostly for cell widgets / charts.