问题描述
自 Symfony 1.x的管理员生成器 ,我发现这种工具对原型应用程序非常有用,可以非常快速地向客户展示内容等.
Since Symfony 1.x's admin generator, I found this kind of tool really useful to prototype applications, show something very quickly to customers etc.
现在 Symfony2 ,管理员生成器似乎不再是优先事项(请参阅此处和此处)
Now for Symfony2, admin generator does not seems to be a priority (see here and here)
Django 的管理员生成器似乎很有趣...
Django's admin generator seems very interesting...
您会推荐哪种Web应用程序管理员生成器(任何语言/技术)(优点/缺点)?
Which web application admin generator (any language / technology) would you recommend (pros / cons)?
推荐答案
Django的自动管理应用程序非常出色.编写完模型后,它将自动在模型周围创建功能齐全的管理应用程序,您可以在其中创建,更新和删除记录.它也可以根据您的需要进行扩展和自定义.
Django's automatic admin app is excellent. Once you've written your models, it automatically creates a full-featured admin app around them where you can create, update and delete records. It's also extensible and customizable for just about whatever you need.
这是一个关于它的很好的概述. Django(和python)使用起来很直观并且很满意-我强烈建议您设置并使用它,并查看它的工作情况.
Here's a pretty good overview about it. Django (and python) is intuitive and satisfying to work with -- I highly recommend that you set it up and play with it and see how well it works.
这篇关于Web应用程序管理员生成器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!