对于需要当前Request.Url的类型的Ninject绑定

时间:2017-02-21 13:57:05

标签: c# dependency-injection asp.net-mvc-5 ninject

我在基于MVC5的网站中使用Ninject 3,并试图找出如何使用一种类型来测试传递到其构造函数中的Uri.Host值的属性。我希望绑定以某种方式提供当前的URL。我最初尝试过的最小结构是:

public class StructuredUrlTester : IStructuredUrlTester
{
    // Expose public getters for parts of the uri.Host value
    bool MyBooleanProperty { get; private set; }

    public StructuredUrlTester(Uri uri)
    {
        // Test the value of uri.Host and extract parts via regex
    }
}

// In Global.asax.cs
public class MvcApplication : NinjectHttpApplication
{
    protected override IKernel CreateKernel()
    {
        kernel.Bind<IStructuredUrlTester>()
            .To<StructuredUrlTester>()
            .InTransientScope();
            .WithConstructorArgument("uri", Request.Url);
    }
}

// In MyController.cs
public class MyController : Controller
{
    private readonly IStructuredUrlTester _tester;

    public ContentPageController(IStructuredUrlTester tester)
    {
        this._tester = tester;
    }

    public ActionResult Index()
    {
        string viewName = "DefaultView";
        if (this._tester.MyBooleanProperty)
        {
            viewName = "CustomView";
        }

        return View(viewName);
    }
}

由于CreateKernel()调用在Request对象可用之前发生,.WithConstructorArgument()部分会抛出异常(&#34; System.Web.HttpException:请求在此处不可用上下文&#34;。)

如何提供界面与混凝土类型的绑定,同时还能够提供例如具体类型的构造函数的HttpContext.Current.Request.Url值(在Controller中可用),在运行时可用吗?

1 个答案:

答案 0 :(得分:3)

在抽象中包含所需的功能:

Request.Url

重构测试人员类:

public class UriProvider : IUriProvider {
    public Uri Current { get { return  HttpContext.Current.Request.Url; } }
}

提供程序实现应该包装Current

HttpContext

请注意,实际上应该在ref.child(yourString)及其请求可用的控制器的操作中调用ref = FIRDatabase.database().reference() ref.child("iduser").observeSingleEvent(of: FIRDataEventType.value, with: { (snapshot) in }) 属性。