0

我有一个 asp.net mvc4 视图,其中包括一些部分视图。这个视图还包含一个提交按钮来过滤网格中的一些元素,见下文:

配置.cshtml

<div id="MyDiv">
    @Html.Partial("../Grids/_CompGrid")
</div>

 @using (Ajax.BeginForm("Search", "Component", ...)
 {
     <input type="submit" name="_search" value="@Resource.CaptionComponentApplyFilter" />
 }

组件控制器.cs

    public PartialViewResult Search()
    {
        // Do some stuff

        return PartialView("_CompGrid");
    }

当返回上面的部分视图时,它会崩溃。似乎它没有处理部分视图的正确路径。请参阅以下消息错误:

The partial view '_CompGrid' was not found or no view engine supports the searched locations.
The following locations were searched:
~/Views/Component/_CompGrid.aspx
~/Views/Component/_CompGrid.ascx
~/Views/Shared/_CompGrid.aspx
~/Views/Shared/_CompGrid.ascx
~/Views/Component/_CompGrid.cshtml
~/Views/Component/_CompGrid.vbhtml
~/Views/Shared/_CompGrid.cshtml
~/Views/Shared/_CompGrid.vbhtml

下面是上述文件的目录结构概述。

/root
  |
  |__ Controllers
  |       |
  |       |__ ComponentController.cs
  |
  |__ Views
  |       |
  |       |__ Home
  |       |     | 
  |       |     |__ Configure.cshtml
  |       |
  |       |__ Grids
  |       |     |
  |       |     |__ _CompGrid.cshtml
  |       |
  |       |  

关于如何解决这个问题的任何想法?

解决方案:

在函数中替换下面的返回行:

    public PartialViewResult Search()
    {
        // Do some stuff

        return PartialView("_CompGrid");
    }

经过:

return PartialView("../Grids/_CompGrid");

但无论如何,如果有人有更好的主意,那将是受欢迎的。

4

1 回答 1

0

你真的有两个选择。首先,您可以简单地引用部分 using ~/Views/Shared/_CompGrid.cshtml。这将始终从文件夹的根目录开始工作Views,因此如果您的文件夹结构发生更改,如何修复它会更加明显。

您的另一个选择是将部分放入~/Views/Shared/文件夹中,因为它是 MVC 尝试查找视图时的默认搜索位置之一。(您实际上可以从上面提供的错误中看到这一点。)因此,假设您移动_CompGrid.cshtml到位于~/Views/Shared/_CompGrid.cshtml,以下代码将正确定位您的视图:

组件控制器:

public PartialViewResult Search()
{
    // Do some stuff

    return PartialView("_CompGrid");
}

配置.cshtml:

<div id="MyDiv">
    @Html.Partial("_CompGrid")
</div>
于 2013-11-07T18:02:58.410 回答