当前位置 : 主页 > 网络编程 > ASP >

asp.net-mvc – 为什么MVC提供的Default AccountController中有2个构造函数?

来源:互联网 收集:自由互联 发布时间:2021-06-24
这是框架生成的默认AccountController.cs. public class AccountController : Controller{ public IFormsAuthentication FormsAuth { get; private set; } public IMembershipService MembershipService { get; private set; } public AccountContro
这是框架生成的默认AccountController.cs.

public class AccountController : Controller
{
    public IFormsAuthentication FormsAuth { get; private set; }
    public IMembershipService MembershipService { get; private set; }

    public AccountController()
        : this(null, null)
    {
    }
    public AccountController(IFormsAuthentication formsAuth, IMembershipService membershipService)
    {
        FormsAuth = formsAuth ?? new FormsAuthenticationService();
        MembershipService = membershipService ?? new AccountMembershipService();

        //---
    }

这很容易理解.

public AccountController(IFormsAuthentication formsAuth, 
        IMembershipService membershipService)
    {
        FormsAuth = formsAuth ?? new FormsAuthenticationService();
        MembershipService = membershipService ?? new AccountMembershipService();
    }

这是什么?它的目的是什么?它是特定于帐户控制器还是其他控制器的要求?而且,我为什么要将它纳入我的项目?

public AccountController()
        : this(null, null)
    {
    }

他们似乎在其他两个地方使用这种类型的构造函数.

谢谢你的帮助

这实际上是Bastard Injection反模式的实现.

我们的想法是支持构造函数注入以允许依赖注入(DI),同时仍为默认行为提供默认构造函数.

实际上没有必要使用默认构造函数,但如果省略它,则必须提供自定义IControllerFactory,因为DefaultControllerFactory假定所有控制器都具有默认构造函数.

ASP.NET MVC在构建时考虑了DI,但我想为了保持简单,Bastard Injection模式用于项目模板,以避免强制开发人员使用特定的IControllerFactory.

网友评论