所以,我一直在桌子上猛击头一天。我知道这可能是一个简单的问题,但答案是让我不知所措。帮助
我在从局部视图构建的模态上有一个DropDownList。我需要处理DropDownList上的.Change(),将选定的文本从DropDownList传递给控制器中的一个方法,然后该方法将给我在ListBox中使用的数据。以下是我的研究引导我的代码片段。
模态函数的所有其他控件都完美无缺。
任何人都可以看到我出错的地方或者指出我正确的方向吗?
// I have tried with [HttpGet], [HttpPost], and no attribute
public ActionResult RegionFilter(string regionName)
{
// Breakpoint here is never hit
var data = new List<object>();
var result = new JsonResult();
var vm = new PropertyModel();
vm.getProperties();
var propFilter = (from p in vm.Properties
where p.Region == regionName && p.Class == "Comparable"
select p).ToList();
var listItems = propFilter.ToDictionary(prop => prop.Id, prop => prop.Name);
data.Add(listItems);
result.Data = data;
return result;
}
@section scripts{
@Scripts.Render("~/Scripts/ui_PropertyList.js")
}
...
<div id="wrapper1">
@using (Html.BeginForm())
{
...
<div id="fancyboxproperties" class="content">
@Html.Partial("PropertyList", Model)
</div>
...
<input type="submit" name="bt_Submit" value="@ViewBag.Title" class="button" />
}
</div>
...
@{ var regions = (from r in Model.Properties
select r.Region).Distinct(); }
<div>
<label>Region Filter: </label>
<select id="ddl_Region" name="ddl_Region">
@foreach (var region in regions)
{
<option value=@region>@region</option>
}
</select>
</div>
// ListBox that needs to update after region is selected
<div>
@Html.ListBoxFor(x => x.Properties, Model.Properties.Where(p => p.Class == "Comparable")
.Select(p => new SelectListItem { Text = p.Name, Value = p.Id }),
new { Multiple = "multiple", Id = "lb_C" })
</div>
...
$(function () {
// other events that work perfectly
...
$("#ddl_Region").change(function () {
$.getJSON("/Process/RegionFilter/" + $("#ddl_Region > option:selected").attr("text"), updateProperties(data));
});
});
function updateProperties(data, status) {
$("#lb_C").html("");
for (var d in data) {
var addOption = new Option(data[d].Value, data[d].Name);
addOption.appendTo("#lb_C");
}
}
答案 0 :(得分:2)
传递给$.getJSON
方法的回调函数是错误的。您需要将引用传递给该函数,而不是调用它。
试试这个:
$.getJSON("/Process/RegionFilter/" + $("#ddl_Region > option:selected").text(), updateProperties);
此外,为了获取所选下拉选项的文本,您需要使用text()
函数:
$("#ddl_Region > option:selected").text()