您的位置:首页 > 编程语言 > ASP

ASP.NET MVC优点

2010-12-10 15:07 183 查看
选择MVC框架的优点:

1.便于管理复杂的应用程序,因为它分成了Model,View,Controller.

2.方便开发人员进行平行开发。每个开发人员可以开发不同的模块。

3.支持TDD,方便开发人员做单元测试。TDD(test driven development)

4.可以完全控制你的html markup.

5.标准的页面大小小,不会包含隐含的数据。

6.支持客户端的JavaScript框架,比如JQurey

7.It uses RESTful interfaces for URLs, which is better for SEO (Search Engine

Optimization). REST is short for REpresentational State Transfer—the

concept of using URLs as the link to a resource, which can be a controller

action method, rather than to physical files on the web server.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: