Where are the ControllerContext and ViewEngines properties in MVC 6 Controller?(MVC 6 Controller 中的 ControllerContext 和 ViewEngines 属性在哪里?)
问题描述
我创建了一个新的 MVC6 项目并构建了一个新站点.目标是获得视图的渲染结果.我找到了以下代码,但我无法让它工作,因为我找不到 ControllerContext 和 ViewEngines.
I've created a new MVC6 project and building a new site. The goal is to get the rendered result of a view. I found the following code, but I can't get it to work because I can't find the ControllerContext and the ViewEngines.
这是我要重写的代码:
protected string RenderPartialViewToString(string viewName, object model)
{
if (string.IsNullOrEmpty(viewName))
viewName = ControllerContext.RouteData.GetRequiredString("action");
ViewData.Model = model;
using (StringWriter sw = new StringWriter())
{
ViewEngineResult viewResult = ViewEngines.Engines.FindPartialView(ControllerContext, viewName);
ViewContext viewContext = new ViewContext(ControllerContext, viewResult.View, ViewData, TempData, sw);
viewResult.View.Render(viewContext, sw);
return sw.GetStringBuilder().ToString();
}
}
推荐答案
更新:我正在更新它以使用 .Net Core 2.x,因为自 2015 年以来 API 发生了变化!
Update: I'm updating this to work with .Net Core 2.x as the APIs have changed since 2015!
首先,我们可以利用 ASP.Net MVC Core 附带的内置依赖注入,这将为我们提供手动渲染视图所需的 ICompositeViewEngine 对象.例如,一个控制器看起来像这样:
First of all we can leverage the built in dependency injection that comes with ASP.Net MVC Core which will give us the ICompositeViewEngine object we need to render our views manually. So for example, a controller would look like this:
public class MyController : Controller
{
private ICompositeViewEngine _viewEngine;
public MyController(ICompositeViewEngine viewEngine)
{
_viewEngine = viewEngine;
}
//Rest of the controller code here
}
接下来,我们实际需要渲染视图的代码.请注意,它现在是一个 async 方法,因为我们将在内部进行异步调用:
Next, the code we actually need to render a view. Note that is is now an async method as we will be making asynchronous calls internally:
private async Task<string> RenderPartialViewToString(string viewName, object model)
{
if (string.IsNullOrEmpty(viewName))
viewName = ControllerContext.ActionDescriptor.ActionName;
ViewData.Model = model;
using (var writer = new StringWriter())
{
ViewEngineResult viewResult =
_viewEngine.FindView(ControllerContext, viewName, false);
ViewContext viewContext = new ViewContext(
ControllerContext,
viewResult.View,
ViewData,
TempData,
writer,
new HtmlHelperOptions()
);
await viewResult.View.RenderAsync(viewContext);
return writer.GetStringBuilder().ToString();
}
}
要调用方法,就这么简单:
And to call the method, it's as simple as this:
public async Task<IActionResult> Index()
{
var model = new TestModel
{
SomeProperty = "whatever"
}
var renderedView = await RenderPartialViewToString("NameOfView", model);
//Do what you want with the renderedView here
return View();
}
这篇关于MVC 6 Controller 中的 ControllerContext 和 ViewEngines 属性在哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MVC 6 Controller 中的 ControllerContext 和 ViewEngines 属性在哪里?
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 使用 rss + c# 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
