我对MVC和Razor的了解非常基础,所以我希望它的内容相当简单。基本上,我的Controllers
正常,但我的Views
文件夹有嵌套结构。例如,而不是:
Views -> Index.cshtml
就像
Views -> BrandName -> Index.cshtml
我创建了一个自定义助手来解决这个问题,但我不确定它如何与查询字符串网址一起使用?这里有一个控制器:
private DataService ds = new DataService();
//
// GET: /Collections/
public ActionResult Index()
{
return View();
}
//
// GET: /Collections/Collection?id=1
public ActionResult Collection(int id)
{
var collectionModel = ds.GetCollection(id);
return View(collectionModel);
}
但是如何让ActionResult Collection
看看:
Views -> Brand2 -> Collection.cshtml
以下是我使用的解决方法:
public static string ResolvePath(string pageName)
{
string path = String.Empty;
//AppSetting Key=Brand
string brand = ConfigurationManager.AppSettings["Brand"];
if (String.IsNullOrWhiteSpace(brand))
path = "~/Views/Shared/Error.cshtml"; //Key [Brand] was not specified
else
path = String.Format("~/Views/{0}/{1}", brand, pageName);
return path;
}
答案 0 :(得分:12)
使用以下
public ActionResult Collection(int id)
{
var collectionModel = ds.GetCollection(id);
return View("/Brand2/Collection", collectionModel);
}
以上代码将搜索以下视图。
~/Views/Brand2/Collection.aspx
~/Views/Brand2/Collection.ascx
~/Views/Shared/Brand2/Collection.aspx
~/Views/Shared/Brand2/Collection.ascx
~/Views/Brand2/Collection.cshtml
~/Views/Brand2/Collection.vbhtml
~/Views/Shared/Brand2/Collection.cshtml
~/Views/Shared/Brand2/Collection.vbhtml
或更直接
public ActionResult Collection(int id)
{
var collectionModel = ds.GetCollection(id);
return View("~/Brand2/Collection.cshtml", collectionModel);
}
现在,我想成为第一个警告你永远不应该永远不会使用这个答案的人。遵循MVC应用程序中固有的约定是有充分理由的。将文件放在已知位置可以让每个人更容易理解您的应用程序。