gpt4 book ai didi

asp.net-mvc - 获取应用程序中所有已编译的 Razor View

转载 作者:行者123 更新时间:2023-12-02 03:09:34 24 4
gpt4 key购买 nike

我正在开发一个用于 ASP.NET Core MVC 的库。对于这个库,我需要获取应用程序中存在的所有(已编译的)Razor View (路径和内容)的列表。

有没有办法在运行时查找应用程序中所有已编译的 Razor View ?到目前为止,我还没有找到答案。

迭代 .cshtml 文件是不可行的,因为使用编译 View 时它们不会被发布。

最佳答案

要获取编译后的 View 路径,您可以尝试 ViewsFeature ,例如

public class HomeController : Controller
{
private readonly IViewCompilerProvider _viewCompilerProvider;
private readonly ApplicationPartManager _applicationPartManager;

public HomeController(IViewCompilerProvider viewCompilerProvider
, ApplicationPartManager applicationPartManager)
{
_viewCompilerProvider = viewCompilerProvider;
_applicationPartManager = applicationPartManager;
}
public IActionResult Index()
{
var feature = new ViewsFeature();
_applicationPartManager.PopulateFeature(feature);
var views = feature.ViewDescriptors;
return View();
}
}

关于asp.net-mvc - 获取应用程序中所有已编译的 Razor View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58029440/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com