我可以使用 StructureMap 将一些字符串(例如配置值)注入到 ASP.NET MVC 控制器中吗?

发布于 2024-12-06 02:45:32 字数 692 浏览 0 评论 0原文

我使用 StructureMap 作为 ASP.NET MVC 网站的 IoC/DI。效果很好。

通常,我的控制器会传入接口和结构映射 + 贪婪构造函数 == 效果很好。

例如。

public void FooController : Controller
{
    public FooController(IPewPew pewPew) { .. }
}

等等..

但是..我的一个控制器(只有一个控制器)想要传入两个字符串。

例如..

public void FooController2 : Controller
{
    public FooController2(IPewPew pewPew, string aaa, string bbb) { .. }
}

有什么方法可以用StructureMap做到这一点吗?有没有办法说,当列出一个字符串“aaa”时,然后使用这个值=> "hi!";

我真的不想将所有这些字符串放入具有接口的具体类中。

就好像我想说类似的话。

For<string>().WithName("aaa").Use<string>().WithValue("hi");

干杯!

I'm using structureMap as my IoC/DI for an ASP.NET MVC web site. Works great.

Normally, I have my controllers that pass in Interfaces and structureMap + greedy constructors == works great.

eg.

public void FooController : Controller
{
    public FooController(IPewPew pewPew) { .. }
}

etc..

But.. one of my controllers (and only one of em) would like to have two strings to be passed in.

eg..

public void FooController2 : Controller
{
    public FooController2(IPewPew pewPew, string aaa, string bbb) { .. }
}

Is there any ways I can do this with StructureMap? Is there a way to say, when a string "aaa" is listed, then use this value => "hi!";

I didn't really want to put all those strings, into a concrete class with an interface.

It's like I want to say something like.

For<string>().WithName("aaa").Use<string>().WithValue("hi");

Cheers!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

又怨 2024-12-13 02:45:32

这对我有用:

ObjectFactory.Configure( x=>
{
    x.For<FooController2>()
     .Use<FooController2>()
     .Ctor<string>("aaa")
     .Is("hi");
});

This worked for me:

ObjectFactory.Configure( x=>
{
    x.For<FooController2>()
     .Use<FooController2>()
     .Ctor<string>("aaa")
     .Is("hi");
});
孤者何惧 2024-12-13 02:45:32

您可以注册一个 Func 委托,它允许您进行类型安全的注册。

container.Configure(r => r.For<FooController2>().Use(() =>
{
    var pewPew = container.GetInstance<IPewPew>();  
    return new FooController2(pewPew, "someValue", "anotherValue");
}));

You can register a Func<T> delegate, which allows you to have a type safe registration.

container.Configure(r => r.For<FooController2>().Use(() =>
{
    var pewPew = container.GetInstance<IPewPew>();  
    return new FooController2(pewPew, "someValue", "anotherValue");
}));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文