在MVC中,我有一个多选下拉列表。在更改事件中,我正在填充另一个下拉菜单,但无法在下面的控制器上获得多选值。这是我的代码。
@Html.DropDownList("Country", ViewData["country"] as List<SelectListItem>, new {@multiple="multiple", style = "width:250px", @class = "dropdown1" })
<script type="text/javascript">
$(document).ready(function () {
$("#Country").change(function () {
var abc = $("#Country").val();
alert(abc);
$("#State").empty();
$.ajax({
type: 'POST',
url: '@Url.Action("GetStates")', // we are calling json method
dataType: 'json',
//data: { id: $("#Country").val() },
data: { "CountryId": abc },
cache: false,
success: function (states) {
// states contains the JSON formatted list
// of states passed from the controller
$.each(states, function (i, state) {
alert(state.Value);
$("#State").append('<option value="' + state.Value + '">' + state.Text + '</option>');
}); // here we are adding option for States
},
error: function (ex) {
alert('Failed to retrieve states.' + ex);
}
});
return false;
})
});
public JsonResult GetStates(string CountryId)
{
return null;
}
但我的 CountryId 为 NULL ,对于多选择下拉案例,只有正常下拉列表才能获得该值。
有解决办法吗?
答案 0 :(得分:2)
您生成的<select multiple="multiple">
会回发一系列值,而不是一个值。
因为您在请求中发送了一个数组,所以需要添加traditional: true
ajax选项
$.ajax({
type: 'POST',
url: '@Url.Action("GetStates")',
dataType: 'json',
data: { countryId: $("#Country").val() },
traditional: true,
....
然后更改控制器方法以接受数组
public JsonResult GetStates(string[] CountryId) // or IEnumerable<string> CountryId
注意这是有效的,因为如果是一个简单的数组,但是如果您可能要回发一组复杂对象,那么您需要使用contentType: 'application/json; charset=utf-8'
选项并使用{{1}字符串化您的数据}
旁注;创建JSON.stringify({ someProperty: yourComplexArray });
的正确方法是使用<select multiple>
方法,它会添加@Html.ListBoxFor()
DropDownListFor()multiple="multiple" attribute. In this case, it will work, but in other cases, for example, using
`,它将无法正确绑定,所以我建议你使用正确的方法。