zoukankan      html  css  js  c++  java
  • Asp.net MVC 3中修改views 目录{转,增}

    1. RazorViewEngine 的构造函数

    public RazorViewEngine(IViewPageActivator viewPageActivator) : base(viewPageActivator)
    {
        base.AreaViewLocationFormats = new string[] { "~/Areas/{2}/Views/{1}/{0}.cshtml""~/Areas/{2}/Views/{1}/{0}.vbhtml""~/Areas/{2}/Views/Shared/{0}.cshtml""~/Areas/{2}/Views/Shared/{0}.vbhtml" };
        base.AreaMasterLocationFormats = new string[] { "~/Areas/{2}/Views/{1}/{0}.cshtml""~/Areas/{2}/Views/{1}/{0}.vbhtml""~/Areas/{2}/Views/Shared/{0}.cshtml""~/Areas/{2}/Views/Shared/{0}.vbhtml" };
        base.AreaPartialViewLocationFormats = new string[] { "~/Areas/{2}/Views/{1}/{0}.cshtml""~/Areas/{2}/Views/{1}/{0}.vbhtml""~/Areas/{2}/Views/Shared/{0}.cshtml""~/Areas/{2}/Views/Shared/{0}.vbhtml" };
        base.ViewLocationFormats = new string[] { "~/Views/{1}/{0}.cshtml""~/Views/{1}/{0}.vbhtml""~/Views/Shared/{0}.cshtml""~/Views/Shared/{0}.vbhtml" };
        base.MasterLocationFormats = new string[] { "~/Views/{1}/{0}.cshtml""~/Views/{1}/{0}.vbhtml""~/Views/Shared/{0}.cshtml""~/Views/Shared/{0}.vbhtml" };
        base.PartialViewLocationFormats = new string[] { "~/Views/{1}/{0}.cshtml""~/Views/{1}/{0}.vbhtml""~/Views/Shared/{0}.cshtml""~/Views/Shared/{0}.vbhtml" };
        base.FileExtensions = new string[] { "cshtml""vbhtml" };
    }

    2. 继承RazorViewEngine修改类定义

    public class TestViewEngine : RazorViewEngine
    {
        public TestViewEngine()
        {
            MasterLocationFormats = new[] {
                "~/TestViews/{1}/{0}.master",
                "~/TestViews/Shared/{0}.master"
            };
            ViewLocationFormats = new[] {
                "~/TestViews/{1}/{0}.cshtml",
                "~/TestViews/{1}/{0}.cshtml",
                "~/TestViews/Shared/{0}.cshtml",
                "~/TestViews/Shared/{0}.cshtml"
            };
            PartialViewLocationFormats = ViewLocationFormats;
            MasterLocationFormats = MasterLocationFormats;
        }
    }

    3. 在需要修改View路径的方法内调用如下代码:

    ViewEngines.Engines.Clear();
    ViewEngines.Engines.Add(new WebFormViewEngine());
    如果没有调用ViewEngines.Engines.Clear();将会多个路径共存。
    如果需要自定义配置路径,只需要将自定义的类中的路径从配置文件或者数据库中读取即可。
  • 相关阅读:
    requests库简单介绍与使用
    python爬虫之无界面谷歌浏览器介绍
    PhantomJS介绍与使用
    使用find_elements_by_class_name定位元素有时候会出现打印出来的列表里面数据为空的现象,解决方案
    【C#】多态
    【JavaScrpt】JS之数组去重
    【SQL】sql语句在insert一条记录后返回该记录的ID
    【SQL】SQL整表复制
    【C#】获取URL上的参数
    【C#】 break continue return 的区别
  • 原文地址:https://www.cnblogs.com/answercard/p/2284420.html
Copyright © 2011-2022 走看看