微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – 在mvc中使用IViewLocationExpander

我想从自定义位置渲染视图,所以我已经实现了
类中的IViewLocationExpander接口.我在启动文件注册了相同的类,如下所示.

Startup.cs文件

public void ConfigureServices(IServiceCollection services)
    {
       .....
        //Render view from custom location.
        services.Configure<RazorViewEngineOptions>(options =>
        {
            options.ViewLocationExpanders.Add(new CustomViewLocationExpander());
        });
        ....
    }

CustomViewLocationExpander类

public class CustomViewLocationExpander : IViewLocationExpander
{
    public IEnumerable<string> ExpandViewLocations(ViewLocationExpanderContext context,IEnumerable<string> viewLocations)
    {

        var session = context.ActionContext.HttpContext.RequestServices.GetrequiredService<SessionServices>();
        string folderName = session.GetSession<string>("ApplicationType");

        viewLocations = viewLocations.Select(f => f.Replace("/Views/","/" + folderName + "/"));


        return viewLocations;
    }

    public void PopulateValues(ViewLocationExpanderContext context)
    {

    }
}

我的应用程序视图结构如下

enter image description here

我的问题是如果我从URL访问ViewsFrontend文件夹中的Views / Login视图
http://localhost:56739/trainee/Login/myclientname并立即将浏览器中的url更改为http://localhost:56739/admin/Login/myclientname,然后在这种情况下它仍然引用ViewsFrontend文件夹,该文件夹应该引用ViewsBackend文件夹.

与受训者的Url应该引用ViewsFrontend文件夹,而admin应该引用ViewsBackend文件夹.

在浏览器中更改url后,它只调用PopulateValues方法,而不调用ExpandViewLocations方法.

那么如何重新配置​​这个类来为其他文件夹工作呢?

谢谢您的帮助 !

解决方法

PopulateValues作为一种指定参数的方式存在,您的视图查找将根据每个请求而变化.由于您没有填充它,因此视图引擎使用先前请求中的缓存值.将应用程序类型添加到PopulateValues并应调用ExpandValues:

public class CustomViewLocationExpander : IViewLocationExpander
{
    public IEnumerable<string> ExpandViewLocations(ViewLocationExpanderContext context,IEnumerable<string> viewLocations)
    {
        string folderName = context.Values["ApplicationType"];
        viewLocations = viewLocations.Select(f => f.Replace("/Views/","/" + folderName + "/"));

        return viewLocations;
    }

    public void PopulateValues(ViewLocationExpanderContext context)
    {
        var session = context.ActionContext.HttpContext.RequestServices.GetrequiredService<SessionServices>();
        string applicationType = session.GetSession<string>("ApplicationType");
        context.Values["ApplicationType"] = applicationType;
    }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐