asp.net mvc3 中的多个控制器调用
我对 ASP.NET MVC3 相当陌生。我点击了下面的链接
http://blogs.msdn.com/b/rickandy/archive/2011/05/02/securing-your-asp-net-mvc-3-application.aspx
一切正常,除了我的 MVC 控制器的构造函数被调用多次,或者可能是我之前没有注意到这种行为。有没有人经历过这样的事情,或者我在这里错过了一些重要的事情。
提前致谢。
I'm fairly new to asp.net MVC3. I followed the link below
http://blogs.msdn.com/b/rickandy/archive/2011/05/02/securing-your-asp-net-mvc-3-application.aspx
it all works fine except my MVC controllers' constructors are being invoked more than one time or may be i didn't notice this behavior before. is there anyone who experienced any such thing or am i missing out something here big time.
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用浏览器 Javascript 控制台(Chrome 非常适合此操作)确保只有 1 个请求发送到控制器。您可能有一段 Javascript 调用它,或者可能有一个错误的 url 链接解析回控制器。
Use the browsers Javascript Console (Chromes is very good for this) to make sure that only 1 request is being sent to the controller. You may have a piece of Javascript calling it or maybe a bad url link resolving back to the controller.