gpt4 book ai didi

c# - 如何使用 MVC4 将 .Mobile View 放在另一个文件夹中?

转载 作者:行者123 更新时间:2023-11-30 12:32:26 28 4
gpt4 key购买 nike

在 MVC 4 中,您只需将 .Mobile 附加到任何 View ,移动设备将自动从同一 Controller 获取该 View 。有没有办法将 .Mobile 文件存储在不同的文件夹中?我真的很想将桌面文件存储在一个“区域”中,将移动文件存储在另一个“区域”中。有人知道这样的事情吗?

最佳答案

这可以通过创建 RazorViewEngine 的自定义实现并将自定义映射添加到 ViewLocationFormats 来轻松实现。请务必记住将自定义映射添加到 ViewLocationFormats 数组的开头,因为它们比现有映射更具体。

namespace MobileViewsInMobileFolder.Utility {

public class MyCustomViewEngine : RazorViewEngine {

public MyCustomViewEngine() {
List<string> existingViewLocationFormats = ViewLocationFormats.ToList();

//Folder Structure: Views\Home\Desktop and Views\Home\Mobile
existingViewLocationFormats.Insert(0, "~/Views/{1}/Desktop/{0}.cshtml");
existingViewLocationFormats.Insert(0, "~/Views/{1}/Mobile/{0}.cshtml");

//Folder Structure: Views\Desktop\Home and Views\Mobile\Home
existingViewLocationFormats.Insert(0, "~/Views/Desktop/{1}/{0}.cshtml");
existingViewLocationFormats.Insert(0, "~/Views/Mobile/{1}/{0}.cshtml");

ViewLocationFormats = existingViewLocationFormats.ToArray();
}
}
}

然后确保在 Application_Start 中添加自定义 View 引擎

ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new MyCustomViewEngine());

关于c# - 如何使用 MVC4 将 .Mobile View 放在另一个文件夹中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11403601/

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