用于构建所谓的 CRUD 管理 UI 的框架(通过 SQL 表)
哪些框架专门针对构建所谓的“CRUD 管理 UI”(基本上是一组用于编辑相关 SQL 表的屏幕),无论是 Web 应用程序还是胖客户端。
我知道的:
- ASP.NET DynamicData
- Django Admin (来自下面 Nick 的回答)
通用框架,例如 Ruby-on-Rails 和 < ASP.NET MVC 不算在内。
What frameworks are targeted specifically at building so-called "CRUD Admin UIs" (basically, a set of screens for editing related SQL tables), whether Web Apps or Thick Clients.
The ones I know of:
- ASP.NET DynamicData
- Django Admin (from Nick's answer below)
General purpose frameworks like Ruby-on-Rails and ASP.NET MVC don't count.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://devpicayune.com/pycon2008/django_admin.html
设置好模型后, Django 的 admin 是一个非常强大、易于使用且可扩展的界面。
http://devpicayune.com/pycon2008/django_admin.html
Once you have your models setup, Django's admin is a very powerful, easy-to-use, and extensible interface.
基于这些要求;我不得不说普通的旧 ASP.NET GridView 绑定到 SQLDataSource。
您甚至不需要打开代码编辑器!
Based on those requirements; i'd have to say plain old ASP.NET GridViews bound to a SQLDataSource.
You'll never even need to open the code editor!