MVC2、.NET4/C#4 可选参数和控制器构造函数
我非常喜欢 C#4 中的可选参数,但当我在控制器构造函数中使用它们时,我遇到了 MVC 问题。例如,如果我有一个构造函数:
public TestController(sting a = "") { /* blah */ }
MVC 有理由说 TestController 没有无参数构造函数。
我该如何解决这个问题?
I am a big fan of optional parameters in C#4 but am having an issue with MVC when I use them in my controller constructors. For example, if I have a single constructor:
public TestController(sting a = "") { /* blah */ }
MVC has a fit saying that there are no parameterless constructors for TestController.
How can I get around this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MVC 错误消息是正确的 - 没有无参数构造函数。您需要提供一个无参数构造函数(在您的情况下应该仅委托给有参数构造函数)。或者,如果您使用 DI,则可以使用明确设计的控制器工厂来将依赖项注入到构造函数中。我相信 MvcContrib 有其中一些。
The MVC error message is correct - there are no parameterless constructors. You need to provide a parameterless constructor (which in your case should just delegate to the parameterful constructors). Optionally, if you're using DI, there are controller factories which are explicitly designed to inject the dependencies into the constructor. I believe MvcContrib has a few of these.