1

提交表单时,我正在尝试刷新视图内的部分视图。但是,每当我尝试时,它只会将部分视图呈现为普通视图。有人可以告诉我我做错了什么吗?

控制器:

public ActionResult ChangeHeatName(string heatName, string updatedHeat)
    {
        string user = User.Identity.Name;
        HomeModel H = new HomeModel();
        H.ChangeHeatName(heatName, updatedHeat, user);
        ChemViewModel mySlagViewModel = new ChemViewModel();
        mySlagViewModel = H.QueryResults(heatName);

        return PartialView("PartialChemAnalysis", mySlagViewModel);
    }

局部视图形式(包含在局部视图中,不是主视图):

@using (Ajax.BeginForm("ChangeHeatName", "Home", new AjaxOptions(){UpdateTargetId = "chemDiv" InsertionMode = InsertionMode.Replace}))
{
    <section>
        Heat Name:<input type="text" name="heatName" value="@Html.ValueFor(x => x.heatname)" style ="width:100px"/>
        Change to:<input type="text" name="updatedHeat" value="" style="width: 100px" />
        <input type="submit" name="ChangeHeatName" value="Change" />
    </section>
}

呈现部分视图的索引视图:

@if(ViewBag.SearchKey == null)
{
    <div class="content-wrapper">
        <hgroup class="title">
            <h1>@HttpContext.Current.User.Identity.Name</h1>
            <h2>@ViewBag.Message</h2>
        </hgroup>
    </div>
}

@using (Html.BeginForm("Index", "Home", "POST"))
{
<div class="searchField">
   <input type="text" class="search-query" name="heatSearch" placeholder="Search">
        <button class="btn btn-success"  type="submit">Search</button>
    <br />
    @if (ViewBag.AverageSuccessful == true)
    {
        <input type="text" name="AvgConfirmation" class="search-query" value="Average Submitted Successfully" width:"400px" placeholder="Search" />
    }
</div>
}

@if(ViewBag.SearchKey != null)
{
    <div>
    <div id ="chemDiv">
    @Html.Action("PartialChemAnalysis", "Home", (string)ViewBag.SearchKey)
    </div>

    <div id ="slafDiv">
    @Html.Action("PartialSlagView", "Home", (string)ViewBag.SearchKey)
    </div>
    </div>

 }

传递 SearchKey 的索引控制器:

 [HttpPost]
    public ActionResult Index(string heatSearch)
    {
        ViewBag.SearchKey = heatSearch;

        return View();
    }
4

3 回答 3

1

目前,您的 ajax.beginform 在您的局部视图中,这一切都很好,但您的局部视图并未呈现在您的索引中,所以实际上您从不执行 ajax 替换逻辑,您只是调用一个操作方法并获得一个完整的页面部分视图的刷新。

这是可行的。

@if(ViewBag.SearchKey != null)
{
    <div>
        <div id ="chemDiv">
            @Html.Partial("ChangeHeatName")
        </div>

        <div id ="slafDiv">
            @Html.Action("PartialSlagView", "Home", (string)ViewBag.SearchKey)
        </div>
    </div>
}

现在您的 Ajax.Beginform 在索引视图中呈现,当单击按钮时,它将刷新。

编辑:您需要做一些事情,@Html.Action("PartialChemAnalysis", "Home", (string)ViewBag.SearchKey)可能会将其粘贴在您的局部视图中,因为“chemDiv”中的所有内容现在都将在更新时被替换。

于 2013-04-12T16:04:25.180 回答
1

您没有指定POSTin Ajax.BeginForm()。尝试这个:

@using (Ajax.BeginForm("ChangeHeatName", "Home", FormMethod.Post, 
new AjaxOptions(){UpdateTargetId = "chemDiv" InsertionMode = InsertionMode.Replace}))
{...}

另外,在你的控制器动作上设置一个断点并单步执行,看看它是否真的击中return PartialView()或跳过它。

于 2013-04-12T17:36:30.933 回答
0

发布这个是因为它不是一个直观的修复。显然 MVC 4 和 jQuery 1.9.1 存在问题,所以为了让它工作,我必须更改对 jQuery 1.7.1 的引用

于 2013-04-12T17:29:02.027 回答