0

我有一个包含@Html.DropDownListFor 的视图。当表单/视图加载时,如果其中一个模型属性具有值(IEnumerable),那么它将创建一堆具有相应数据的 div。如果该属性没有任何值(aka Count() == 0),那么它应该在表单上显示一个按钮(它将为该属性创建数据)。

因此,当用户从下拉列表中选择其中一个选项时,我会向填充当前表单/视图的完全相同的操作方法发起 ajax 调用,但这一次,它在 id 字段中发送一个值。

我的操作方法中有一个断点,我验证它是否被命中,它具有正确的参数值并为传递给视图的模型创建正确的数据,但是......当模型被发送到视图重新填充,表单上的项目/控件都没有更改。我什至在 cshtml 文件中放置了断点,它也通过正确的数据进行处理。

所以,这是我的控制器:

public ActionResult Index(int? id)
        {
            var seasonId = id;

            if (seasonId == null)
            {
                var player = _playerRepository.Query().FirstOrDefault(p => p.PlayerId == _userIdentity.PlayerId);

                if (player.DefaultSeasonId != null)
                    seasonId = (int)player.DefaultSeasonId;
                else
                {
                    return View(new ScheduleModel
                    {
                        Player = player,
                        AvailableSeasons = _seasonRepository.Query().Select(s => s)
                    });
                }
            }

            return View(CreateScheduleModelForSeason((int)seasonId));
        }

这是我观点的开始:

@model LeagueManager.Models.ScheduleModel

@{
    ViewBag.Title = "Schedule(s)";
}

<div class="row">
    @Html.LabelFor(m => m.AvailableSeasons)
    @Html.DropDownListFor(m => m.SelectedSeasonId, new SelectList(Model.AvailableSeasons, "SeasonId", "SeasonName"), new { id = "seasonSelect" })
</div>

<form method="post" action="Schedule/GenerateSchedule">
    <h2>The Season's Schedules/Weeks and Matchups</h2>

    <div>
        <div>
            @if (Model.SchedulesAndMatches == null || (Model.SchedulesAndMatches != null && !Model.SchedulesAndMatches.Any()))
            {
                <input type="submit" class="btn btn-primary" value="Generate Schedule" />
            }
        </div>

这是ajax调用:

@* Season Selector *@
$('select#seasonSelect').change(function () {
    var selectedSeasonId = $(this).val();

    $.ajax({
        url: '/Schedule/Index',
        data: { id: selectedSeasonId }
    });
});

同样,所有实际代码都在工作,只是没有重新渲染视图......

示例:当调用 id = 1 的 ActionResult 方法时,它会加载整个计划。当通过下拉菜单切换到 id = 2 时(然后通过 ajax 再次调用),它保持相同的时间表。

另一方面:当调用 id = 2 的 ActionResult 方法时,它会加载单个按钮。通过下拉菜单切换到 id = 1 时,它会在模型​​中重新填充正确的数据,但视图/表单不会反映新信息。

请帮忙!

4

1 回答 1

7

当您使用 ajax 调用操作时,您无法返回视图,您必须返回 json 数据。因此,您的解决方案是删除 ajax 调用并使用您的帖子网址设置 window.location ..

@* Season Selector *@
$('select#seasonSelect').change(function () {
    var selectedSeasonId = $(this).val();

    window.location = '/Schedule/Index/' + selectedSeasonId;        

});
于 2013-10-04T07:20:15.847 回答