3

我想cshtml在我的 ASP.NET Core 2.1 Web API 项目中找到我的文件。为此,我正在使用以下代码:

var httpContext = new DefaultHttpContext { RequestServices = this.serviceProvider };
var actionContext = new ActionContext(httpContext, new RouteData(), new ActionDescriptor());

var viewResult = this.razorViewEngine.FindView(
                actionContext,
                "~/PdfTemplate/ProjectRaport.cshtml",
                false);

文件在这里:

在此处输入图像描述

但是从上面的代码中,View(即~/PdfTemplate/ProjectRaport.cshtml)为空。

如何通过路径查找特定文件WebApi Core

此代码工作正常:

var viewResult = this.razorViewEngine.FindView(actionContext,
                Path.Combine(this.hostingEnvironment.ContentRootPath, "PdfTemplate", "ProjectRaport.cshtml"),
                false);

文件路径没问题,但ViewinviewResult仍然为空

当我尝试GetView

var viewResult = this.razorViewEngine.GetView(
                Path.Combine(this.hostingEnvironment.ContentRootPath, "PdfTemplate", "ProjectRaport.cshtml"),
                Path.Combine(this.hostingEnvironment.ContentRootPath, "PdfTemplate", "ProjectRaport.cshtml"),
                false);

viewResult.View仍然为空

编辑

SearchedLocations路径是好的:

在此处输入图像描述

在此处输入图像描述

当我删除.cshtml扩展名时,SearchedLocations是空的

4

2 回答 2

8

我最近尝试实现 Scott Sauber 解释的剃刀电子邮件模板

教程在这里:https ://scottsauber.com/2018/07/07/walkthrough-creating-an-html-email-template-with-razor-and-razor-class-libraries-and-rendering-it-from-a -net-standard-class-library/

问题是我必须克服一个错误(https://stackoverflow.com/a/56504181/249895),它需要组件所在的相对 netcodeapp2.2。

var viewPath = ‘~/bin/Debug/netcoreapp2.2/Views/MainView.cshtml’;

_viewEngine.GetView(executingFilePath: viewPath , viewPath: viewPath , isMainPage: true);

可以bin\Debug\netcoreapp2.2通过使用以下代码来实现:

using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
public class RenderingService : IRenderingService
{

    private readonly IHostingEnvironment _hostingEnvironment;
    public RenderingService(IHostingEnvironment hostingEnvironment)
    {
    _hostingEnvironment = hostingEnvironment;
    }

    public string RelativeAssemblyDirectory()
    {
        var contentRootPath = _hostingEnvironment.ContentRootPath;
        string executingAssemblyDirectoryAbsolutePath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
        string executingAssemblyDirectoryRelativePath = System.IO.Path.GetRelativePath(contentRootPath, executingAssemblyDirectoryAbsolutePath);
        return executingAssemblyDirectoryRelativePath;
    }
}

在我遇到有关模板文件的问题之前,一切都很好。问题是即使文件在其中,~\bin\Debug\netcoreapp2.2它也会在根文件夹中搜索模板,例如rootfolder\Views\Shared\_Layout.cshtml而不是在rootfolder\bin\Debug\netcoreapp2.2\Views\Shared\_Layout.cshtml.

这很可能是由于我将视图作为嵌入式资源CLASS LIBRARY而不是直接在 Web Api 解决方案中。 类库 文件夹结构

奇怪的是,如果根文件夹中没有文件,您仍然会得到CACHEDLayout 页面。

好的部分是,当您发布解决方案时,它会将解决方案展平,因此VIEWS位于ROOT文件夹中。

发布

[解决方案]

解决方案似乎在 Startup.cs 文件夹中。

从这里得到我的解决方案:找不到位于引用项目中的视图

//https://stackoverflow.com/q/50934768/249895
services.Configure<Microsoft.AspNetCore.Mvc.Razor.RazorViewEngineOptions>(o => {
                o.ViewLocationFormats.Add("/Views/{0}" + Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.ViewExtension);
                o.FileProviders.Add(new Microsoft.Extensions.FileProviders.PhysicalFileProvider(AppContext.BaseDirectory));
            });

在此之后,您可以像这样放置代码:

var contentRootPath = _hostingEnvironment.ContentRootPath;
string executingAssemblyDirectoryAbsolutePath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
string executingAssemblyDirectoryRelativePath = System.IO.Path.GetRelativePath(contentRootPath, executingAssemblyDirectoryAbsolutePath);

string executingFilePath = $"{executingAssemblyDirectoryAbsolutePath.Replace('\\', '/')}/Views/Main.cshtml";
string viewPath = "~/Views/Main.cshtml";
string mainViewRelativePath = $"~/{executingAssemblyDirectoryRelativePath.Replace('\\','/')}/Views/Main.cshtml";

var getViewResult = _viewEngine.GetView(executingFilePath: executingFilePath, viewPath: viewPath, isMainPage: true);

<!-- OR -->

var getViewResult = _viewEngine.GetView(executingFilePath: viewPath, viewPath: viewPath, isMainPage: true);
于 2019-11-01T13:03:19.740 回答
0

我没有找到对我的问题的有效答复,因此我发布了有效的解决方案。

而不是使用PathCombinewith ContentRootPath,只需键入:

string viewPath = "~/PdfTemplate/ProjectRaport.cshtml";
var viewResult = this.razorViewEngine.GetView(viewPath, viewPath, false);

它工作正常

于 2019-06-08T06:50:19.183 回答