本文介绍了为什么会话在ASP.NET MVC应用程序中的灾难?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么这样说我们不应该使用在ASP.NET MVC应用程序会话变量?我碰到这是这么说的。在这种情况下,我将如何保持整个请求的数值一样登录用户信息,并关联到他的帐户一些相关的数据?

这是答案。

解决方案

One of the fundamental principles of frameworks like ASP.NET MVC is that they are stateless, just like the Web is. ASP.NET Web Forms is an attempt to mimic a stateful paradigm over a stateless enviroment. It is a lie, in other words.

Using Session variable in an ASP.NET MVC application is a bit like tying a horn to a horse's head, and calling it a Unicorn.

这篇关于为什么会话在ASP.NET MVC应用程序中的灾难?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 07:51