前端控制器,页面控制器?
前端控制器和页面控制器有什么区别?哪个是最好的?
what is the difference between front controller and page controller? which is the best?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
前端控制器和页面控制器有什么区别?哪个是最好的?
what is the difference between front controller and page controller? which is the best?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
请参阅此了解前端控制器模式和this 用于页面控制器模式。您可以从 此处
这不是两种互补的模式,但它们都有不同的实现。 ASP.NET MVC 使用前端控制器模式,而 ASP.NET Web 表单是基于页面控制器模式实现的。
See this for front-controller pattern and this for page controller pattern. And you can get a better idea of how front-controller is implemented in ASP.NET MVC and it's advantages over page controller from here
These are not two complementary patterns but they both have different implementations. ASP.NET MVC uses front controller pattern where as ASP.NET Web forms are implemented based on the page controller pattern.
我认为前端控制器架构对于所有请求都有一个单一入口点,而页面控制器架构对于每个请求都有单独的入口点。 ASP.NET MVC 使用前端控制器架构。 FubuMVC 是.NET 前端控制器架构。 StackOverflow 并不是真正适合讨论哪个更好的论坛。
这里是FubuMVC 的前端控制器模式结束了。
I think it's that a front controller architecture has a single entry point for all requests whereas a Page Controller architecture has separate entry points for each request. ASP.NET MVC uses the Front Controller architecture. FubuMVC is a .NET front controller architecture. StackOverflow isn't really the right forum to address which is better.
Here's an over of FubuMVC's front controller pattern.