3

我已经阅读了数十个相关线程,并从示例中创建了我非常简单的虚拟提供程序。

它不渲染虚拟文件流。只显示计划文本。

这是输出。

@inherits System.Web.Mvc.WebViewPage 
@{ViewBag.Title = "Hellow World !";}
<h2>Hellow World !</h2>

有关于此的相关线程,但他们并没有说他们是如何解决它或解决方案不起作用的。我找不到我做错了什么。

还有更多...

怎么了 ?

这是我的测试代码。(Global.asax,这就是我改变的全部。)

public class MvcApplication : System.Web.HttpApplication
{
    protected void Application_Start()
    {
        System.Web.Hosting.HostingEnvironment.RegisterVirtualPathProvider(
            new MyProvider());

        AreaRegistration.RegisterAllAreas();

        WebApiConfig.Register(GlobalConfiguration.Configuration);
        FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
        RouteConfig.RegisterRoutes(RouteTable.Routes);
        BundleConfig.RegisterBundles(BundleTable.Bundles);
        AuthConfig.RegisterAuth();
    }
}

public class MyProvider : VirtualPathProvider
{
    public override bool FileExists(string virtualPath)
    {
        if (Previous.FileExists(virtualPath))
            return true;
        else
            //  ~/Infra is the test url
            return virtualPath.StartsWith("/Infra") || virtualPath.StartsWith("~/Infra");
    }

    public override VirtualFile GetFile(string virtualPath)
    {
        if (Previous.FileExists(virtualPath))
            return base.GetFile(virtualPath);
        else
            return new MyVirtualFile(virtualPath);
    }

    public class MyVirtualFile : VirtualFile
    {
        public MyVirtualFile(string virtualPath) : base(virtualPath) { }

        public override Stream Open()
        {
            //Loading stream from seperate dll shows just plain text
            //System.Reflection.Assembly assembly = System.Reflection.Assembly.LoadFile(
            //  System.IO.Path.Combine(HttpRuntime.BinDirectory, "Infra.dll"));
            //return assembly.GetManifestResourceStream("Infra.Views.Home.Index.cshtml");

            //Changed to string but also it shows plain text.
            return new System.IO.MemoryStream(System.Text.ASCIIEncoding.UTF8.GetBytes(
                "@inherits System.Web.Mvc.WebViewPage \r\n  <h2>Hellow World !</h2>"));
        }
    }
}
4

1 回答 1

2

我可以看到这个问题有点老了,但我遇到了同样的错误。我相信问题出在测试 URL 上。我没有时间进行全面调查,但我认为除非提供的 URL 采用预期格式(ASP.NET MVC 视图引擎是基于约定的),否则它可能不会使用 razor 作为视图引擎;我不确定这是否是原因,但使用您正在使用的“Infra”字符串的一些示例:

家庭控制器中的新 MVC 4 项目:

public ActionResult Index()
{
    ViewBag.Message = "Welcome to ASP.NET MVC!";

    dynamic x = new ExpandoObject();

    return View("Infra-test.cshtml", x);
}

这要求:

private bool IsPathVirtual(string virtualPath)

设置virtualPath'/Views/Home/Infra-test.cshtml.aspx'. 它在末尾添加了一个 aspx 扩展名,这让我相信它没有使用 razor 来编译视图。对虚拟路径提供程序进行小的修改将看到以下链接有效:

public override bool FileExists(string virtualPath)
{
    if (Previous.FileExists(virtualPath))
        return true;
    else
        //  prevent view start compilation errors
        return virtualPath.StartsWith("/Infra") && !virtualPath.Contains("_ViewStart");
}

有效的 URL:

return View("/Infra/test.cshtml", x);
return View("/Infra/one/test.cshtml", x);
return View("/Infra/one/two/test.cshtml", x);

这些不起作用:

return View("/Infra", x);
return View("/Infra/test", x);

为了使示例工作,您还需要实施GetCacheDependency;否则,当它在磁盘上找不到虚拟路径的文件时会抛出异常,下面是一个简单的例子。阅读文档以正确实施。

private bool IsVirtualPath(string virtualPath)
{
    return virtualPath.StartsWith("/Infra") && !virtualPath.Contains("_ViewStart");
}

public override CacheDependency GetCacheDependency(string virtualPath, System.Collections.IEnumerable virtualPathDependencies, DateTime utcStart)
{
    if (IsVirtualPath(virtualPath))
        return null;

    return Previous.GetCacheDependency(virtualPath, virtualPathDependencies, utcStart);
}
于 2013-09-06T16:45:31.107 回答