สิ่งนี้ทำให้ฉันสนใจและในที่สุดฉันก็มีโอกาสได้ดู เห็นได้ชัดว่าคนอื่น ๆ ไม่เข้าใจว่านี่เป็นปัญหาในการค้นหามุมมองไม่ใช่ปัญหาในการกำหนดเส้นทางเองและนั่นอาจเป็นเพราะชื่อคำถามของคุณบ่งชี้ว่าเกี่ยวข้องกับการกำหนดเส้นทาง
ในกรณีใด ๆ เพราะนี่เป็นปัญหาที่ดูที่เกี่ยวข้องกับวิธีเดียวที่จะได้รับสิ่งที่คุณต้องการคือการแทนที่เครื่องยนต์มุมมองเริ่มต้น โดยปกติเมื่อคุณทำสิ่งนี้มันมีจุดประสงค์ง่ายๆในการเปลี่ยนเอนจินมุมมองของคุณ (เช่น Spark, NHaml และอื่น ๆ ) ในกรณีนี้ไม่ใช่ตรรกะการสร้างมุมมองที่เราต้องแทนที่ แต่เป็นFindPartialView
และFindView
วิธีการในVirtualPathProviderViewEngine
คลาส
คุณสามารถขอบคุณดาวที่โชคดีของคุณที่วิธีการเหล่านี้เป็นเสมือนจริงเพราะทุกอย่างในVirtualPathProviderViewEngine
นั้นไม่สามารถเข้าถึงได้ - มันเป็นส่วนตัวและนั่นทำให้มันน่ารำคาญมากที่จะแทนที่ตรรกะการค้นหาเพราะคุณต้องเขียนโค้ดครึ่งหนึ่งใหม่โดยทั่วไปแล้ว ถูกเขียนขึ้นหากคุณต้องการให้เล่นได้ดีกับแคชตำแหน่งและรูปแบบสถานที่ หลังจากขุดในตัวสะท้อนแสงในที่สุดฉันก็สามารถหาโซลูชันที่ใช้งานได้
สิ่งที่ฉันได้ทำที่นี่คือครั้งแรกสร้างนามธรรมAreaAwareViewEngine
ที่บุคลากรโดยตรงจากแทนVirtualPathProviderViewEngine
WebFormViewEngine
ฉันทำสิ่งนี้เพื่อที่ว่าหากคุณต้องการสร้างมุมมอง Spark แทน (หรืออะไรก็ตาม) คุณยังสามารถใช้คลาสนี้เป็นประเภทพื้นฐานได้
รหัสด้านล่างค่อนข้างยาวดังนั้นเพื่อให้คุณสรุปได้อย่างรวดเร็วว่ามันทำอะไรได้บ้าง: ช่วยให้คุณใส่{2}
ลงในรูปแบบสถานที่ซึ่งสอดคล้องกับชื่อพื้นที่ในลักษณะเดียวกัน{1}
กับชื่อคอนโทรลเลอร์ แค่นั้นแหละ! นั่นคือสิ่งที่เราต้องเขียนโค้ดทั้งหมดนี้เพื่อ:
BaseAreaAwareViewEngine.cs
public abstract class BaseAreaAwareViewEngine : VirtualPathProviderViewEngine
{
private static readonly string[] EmptyLocations = { };
public override ViewEngineResult FindView(
ControllerContext controllerContext, string viewName,
string masterName, bool useCache)
{
if (controllerContext == null)
{
throw new ArgumentNullException("controllerContext");
}
if (string.IsNullOrEmpty(viewName))
{
throw new ArgumentNullException(viewName,
"Value cannot be null or empty.");
}
string area = getArea(controllerContext);
return FindAreaView(controllerContext, area, viewName,
masterName, useCache);
}
public override ViewEngineResult FindPartialView(
ControllerContext controllerContext, string partialViewName,
bool useCache)
{
if (controllerContext == null)
{
throw new ArgumentNullException("controllerContext");
}
if (string.IsNullOrEmpty(partialViewName))
{
throw new ArgumentNullException(partialViewName,
"Value cannot be null or empty.");
}
string area = getArea(controllerContext);
return FindAreaPartialView(controllerContext, area,
partialViewName, useCache);
}
protected virtual ViewEngineResult FindAreaView(
ControllerContext controllerContext, string areaName, string viewName,
string masterName, bool useCache)
{
string controllerName =
controllerContext.RouteData.GetRequiredString("controller");
string[] searchedViewPaths;
string viewPath = GetPath(controllerContext, ViewLocationFormats,
"ViewLocationFormats", viewName, controllerName, areaName, "View",
useCache, out searchedViewPaths);
string[] searchedMasterPaths;
string masterPath = GetPath(controllerContext, MasterLocationFormats,
"MasterLocationFormats", masterName, controllerName, areaName,
"Master", useCache, out searchedMasterPaths);
if (!string.IsNullOrEmpty(viewPath) &&
(!string.IsNullOrEmpty(masterPath) ||
string.IsNullOrEmpty(masterName)))
{
return new ViewEngineResult(CreateView(controllerContext, viewPath,
masterPath), this);
}
return new ViewEngineResult(
searchedViewPaths.Union<string>(searchedMasterPaths));
}
protected virtual ViewEngineResult FindAreaPartialView(
ControllerContext controllerContext, string areaName,
string viewName, bool useCache)
{
string controllerName =
controllerContext.RouteData.GetRequiredString("controller");
string[] searchedViewPaths;
string partialViewPath = GetPath(controllerContext,
ViewLocationFormats, "PartialViewLocationFormats", viewName,
controllerName, areaName, "Partial", useCache,
out searchedViewPaths);
if (!string.IsNullOrEmpty(partialViewPath))
{
return new ViewEngineResult(CreatePartialView(controllerContext,
partialViewPath), this);
}
return new ViewEngineResult(searchedViewPaths);
}
protected string CreateCacheKey(string prefix, string name,
string controller, string area)
{
return string.Format(CultureInfo.InvariantCulture,
":ViewCacheEntry:{0}:{1}:{2}:{3}:{4}:",
base.GetType().AssemblyQualifiedName,
prefix, name, controller, area);
}
protected string GetPath(ControllerContext controllerContext,
string[] locations, string locationsPropertyName, string name,
string controllerName, string areaName, string cacheKeyPrefix,
bool useCache, out string[] searchedLocations)
{
searchedLocations = EmptyLocations;
if (string.IsNullOrEmpty(name))
{
return string.Empty;
}
if ((locations == null) || (locations.Length == 0))
{
throw new InvalidOperationException(string.Format("The property " +
"'{0}' cannot be null or empty.", locationsPropertyName));
}
bool isSpecificPath = IsSpecificPath(name);
string key = CreateCacheKey(cacheKeyPrefix, name,
isSpecificPath ? string.Empty : controllerName,
isSpecificPath ? string.Empty : areaName);
if (useCache)
{
string viewLocation = ViewLocationCache.GetViewLocation(
controllerContext.HttpContext, key);
if (viewLocation != null)
{
return viewLocation;
}
}
if (!isSpecificPath)
{
return GetPathFromGeneralName(controllerContext, locations, name,
controllerName, areaName, key, ref searchedLocations);
}
return GetPathFromSpecificName(controllerContext, name, key,
ref searchedLocations);
}
protected string GetPathFromGeneralName(ControllerContext controllerContext,
string[] locations, string name, string controllerName,
string areaName, string cacheKey, ref string[] searchedLocations)
{
string virtualPath = string.Empty;
searchedLocations = new string[locations.Length];
for (int i = 0; i < locations.Length; i++)
{
if (string.IsNullOrEmpty(areaName) && locations[i].Contains("{2}"))
{
continue;
}
string testPath = string.Format(CultureInfo.InvariantCulture,
locations[i], name, controllerName, areaName);
if (FileExists(controllerContext, testPath))
{
searchedLocations = EmptyLocations;
virtualPath = testPath;
ViewLocationCache.InsertViewLocation(
controllerContext.HttpContext, cacheKey, virtualPath);
return virtualPath;
}
searchedLocations[i] = testPath;
}
return virtualPath;
}
protected string GetPathFromSpecificName(
ControllerContext controllerContext, string name, string cacheKey,
ref string[] searchedLocations)
{
string virtualPath = name;
if (!FileExists(controllerContext, name))
{
virtualPath = string.Empty;
searchedLocations = new string[] { name };
}
ViewLocationCache.InsertViewLocation(controllerContext.HttpContext,
cacheKey, virtualPath);
return virtualPath;
}
protected string getArea(ControllerContext controllerContext)
{
// First try to get area from a RouteValue override, like one specified in the Defaults arg to a Route.
object areaO;
controllerContext.RouteData.Values.TryGetValue("area", out areaO);
// If not specified, try to get it from the Controller's namespace
if (areaO != null)
return (string)areaO;
string namespa = controllerContext.Controller.GetType().Namespace;
int areaStart = namespa.IndexOf("Areas.");
if (areaStart == -1)
return null;
areaStart += 6;
int areaEnd = namespa.IndexOf('.', areaStart + 1);
string area = namespa.Substring(areaStart, areaEnd - areaStart);
return area;
}
protected static bool IsSpecificPath(string name)
{
char ch = name[0];
if (ch != '~')
{
return (ch == '/');
}
return true;
}
}
ตอนนี้ตามที่ระบุไว้นี่ไม่ใช่เครื่องยนต์ที่เป็นรูปธรรมดังนั้นคุณต้องสร้างสิ่งนั้นด้วย ส่วนนี้โชคดีที่ง่ายกว่ามากสิ่งที่เราต้องทำคือตั้งค่ารูปแบบเริ่มต้นและสร้างมุมมอง:
AreaAwareViewEngine.cs
public class AreaAwareViewEngine : BaseAreaAwareViewEngine
{
public AreaAwareViewEngine()
{
MasterLocationFormats = new string[]
{
"~/Areas/{2}/Views/{1}/{0}.master",
"~/Areas/{2}/Views/{1}/{0}.cshtml",
"~/Areas/{2}/Views/Shared/{0}.master",
"~/Areas/{2}/Views/Shared/{0}.cshtml",
"~/Views/{1}/{0}.master",
"~/Views/{1}/{0}.cshtml",
"~/Views/Shared/{0}.master"
"~/Views/Shared/{0}.cshtml"
};
ViewLocationFormats = new string[]
{
"~/Areas/{2}/Views/{1}/{0}.aspx",
"~/Areas/{2}/Views/{1}/{0}.ascx",
"~/Areas/{2}/Views/{1}/{0}.cshtml",
"~/Areas/{2}/Views/Shared/{0}.aspx",
"~/Areas/{2}/Views/Shared/{0}.ascx",
"~/Areas/{2}/Views/Shared/{0}.cshtml",
"~/Views/{1}/{0}.aspx",
"~/Views/{1}/{0}.ascx",
"~/Views/{1}/{0}.cshtml",
"~/Views/Shared/{0}.aspx"
"~/Views/Shared/{0}.ascx"
"~/Views/Shared/{0}.cshtml"
};
PartialViewLocationFormats = ViewLocationFormats;
}
protected override IView CreatePartialView(
ControllerContext controllerContext, string partialPath)
{
if (partialPath.EndsWith(".cshtml"))
return new System.Web.Mvc.RazorView(controllerContext, partialPath, null, false, null);
else
return new WebFormView(controllerContext, partialPath);
}
protected override IView CreateView(ControllerContext controllerContext,
string viewPath, string masterPath)
{
if (viewPath.EndsWith(".cshtml"))
return new RazorView(controllerContext, viewPath, masterPath, false, null);
else
return new WebFormView(controllerContext, viewPath, masterPath);
}
}
ViewLocationFormats
โปรดทราบว่าเราได้เพิ่มไม่กี่รายการมาตรฐาน นี่คือ{2}
รายการใหม่ที่{2}
จะแมปกับรายการที่area
เราใส่ไว้ในไฟล์RouteData
. ฉันทิ้งไว้MasterLocationFormats
คนเดียว แต่เห็นได้ชัดว่าคุณสามารถเปลี่ยนแปลงได้หากต้องการ
ตอนนี้แก้ไขของคุณglobal.asax
เพื่อลงทะเบียนเอนจินมุมมองนี้:
Global.asax.cs
protected void Application_Start()
{
RegisterRoutes(RouteTable.Routes);
ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new AreaAwareViewEngine());
}
... และลงทะเบียนเส้นทางเริ่มต้น:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Area",
"",
new { area = "AreaZ", controller = "Default", action = "ActionY" }
);
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = "" }
);
}
ตอนนี้สร้างสิ่งที่AreaController
เราอ้างถึง:
DefaultController.cs (ใน ~ / Controllers /)
public class DefaultController : Controller
{
public ActionResult ActionY()
{
return View("TestView");
}
}
เห็นได้ชัดว่าเราต้องการโครงสร้างไดเร็กทอรีและมุมมองเพื่อไปด้วย - เราจะทำให้สิ่งนี้ง่ายมาก:
TestView.aspx (ใน ~ / Areas / AreaZ / Views / Default / หรือ ~ / Areas / AreaZ / Views / Shared /)
<%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage" %>
<h2>TestView</h2>
This is a test view in AreaZ.
และนั่นแหล่ะ ในที่สุดเราก็เสร็จแล้ว
ส่วนใหญ่คุณควรจะสามารถที่จะเพียงแค่ใช้เวลาBaseAreaAwareViewEngine
และAreaAwareViewEngine
และวางไว้ในโครงการ MVC ใด ๆ ดังนั้นแม้ว่ามันเอามากรหัสเพื่อรับนี้ทำคุณจะต้องมีการเขียนครั้งเดียว หลังจากนั้นก็เป็นเพียงการแก้ไขไม่กี่บรรทัดในglobal.asax.cs
และสร้างโครงสร้างไซต์ของคุณ