奇怪的控制器名称内容
我正在使用自己的控制器工厂,有时在函数中的
public IController CreateController(RequestContext requestContext, string controllerName)
controllerName参数中分配了值“Content”,但我在 CompositionContainer 中找不到该值。 这就是为什么我有两个问题:
什么是“内容”,我如何过滤它?
是否有一些同样好的示例来展示如何正确重写 CreateController?
I am using my own controller factory and sometimes in function
public IController CreateController(RequestContext requestContext, string controllerName)
controllerName parameter assigned with value "Content" which I can't find in my CompositionContainer.
That's why I have 2 question:
What is "Content" how can I filter it?
Is there some same good sample to show how to correctly override CreateController?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能向
/Content/Foo
发出了请求有许多示例展示了如何使用不同的 DI 框架来完成此操作。这是使用 StructureMap 的示例实现。
Maybe a request was made to
/Content/Foo
There are many examples out there showing how this could be done with different DI frameworks. Here's a sample implementation with StructureMap.