我有一个 MVC 视图,它使用下面的 Razor 语法呈现基本上等同于 KeyValuePair 的内容,然后生成以下 HTML。
@Html.DropDownListFor(x => x.SelectedItems, new SelectList(Model.SelectedItems, "Key", "Key"), new { Class = "selectList selectedList", size = "2" })
HTML:
<select class="selectList selectedList" id="SelectedItems" name="SelectedItems" size="2">
<option value="842">Item 1</option>
<option value="326">Item 2</option>
<option value="327">Item 3</option>
</select>
我正在使用 Jquery 和通用函数手动发布表单来发布我们的表单,如下所示:
function GenericSubmit(formSelector, sender, callback) {
if (typeof (sender) != "undefined" && $(sender).hasClass('disabled')) {
return false;
}
var $that = $(formSelector);
var that = $that.get(0);
if ($that.valid()) {
$.ajax({
url: that.action,
type: that.method,
data: $(that).serialize(),
success: function (data, textStatus, jqXHR) {
callback.call(that, data);
}
});
}
return false;
}
但是我遇到的问题是,只有正在发送的数据是实际值(我希望这就是 JQ 的工作方式..),但我需要绑定到 IEnumerable。
通过查看发送到表单的 POST 数据,我只能看到正在发送的以下值——我希望我的模型有一个空集合。
SelectedItems:842
SelectedItems:326
SelectedItems:327
我的模型如下:
/// <summary>
/// An response for dealing with list type entities
/// </summary>
public class ListEntityResponse : EntityScreenResponse
{
/// <summary>
/// Contains a Enumerable of items that can be selected
/// </summary>
public List<KeyValueViewModel> AvailableItems { get; set; }
/// <summary>
/// Contains a Enumerable of items that have been selected
/// </summary>
public List<KeyValueViewModel> SelectedItems { get; set; }
public ListEntityResponse()
{
AvailableItems = new List<KeyValueViewModel>();
SelectedItems = new List<KeyValueViewModel>();
}
}
为了更加清晰 - 这是我的 KeyValueViewModel:
public class KeyValueViewModel
{
public string Key { get; set; }
public string Value { get; set; }
}
我已经为此搜索了高低,但似乎找不到任何有效的主题,任何帮助将不胜感激!
谢谢,