MVC2、.NET4/C#4 可选参数和控制器构造函数

发布于 2024-08-24 12:22:17 字数 192 浏览 6 评论 0原文

我非常喜欢 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

汹涌人海 2024-08-31 12:22:17

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文