ASP.NET MVC 内部使用什么?
aspnet mvc 内部使用什么(用于路由)?
应用程序、会话、视图状态、Cookie、跨页数据、Context.Items、配置文件??????
我的意思是它如何在不使用上述任何技术的情况下保持状态?
What does aspnet mvc internally use (for routing)?
Application, Session, Viewstate, Cookies, Cross Page Data, Context.Items, Profiles???????
I mean how can it maintain states w/o using any of the above techniques?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASP.NET MVC 路由不使用上述任何内容。它不保持任何状态。在内部,它使用静态字典来存储路由定义,但这是一个实现细节,您不应该以任何原因依赖它,因为它可能在未来版本中发生变化。
ASP.NET MVC routing uses none of the above. It maintains no state. Internally it uses a static dictionary to store the route definition but that's an implementation detail that you should not depend on for any reason as it might change in future versions.