我有一个模特:
public class DocumentModel
{
public int TypeID { get; set; }
public List<SelectListItem> DocumentTypes { get; set; }
}
我有一个观点:
@Html.DropDownListFor(x => x.TypeID, Model.DocumentTypes, "- please select -")
我填充了我的下拉列表
var model = new DocumentModel();
model.DocumentTypes = GetDocumentTypes();
private static List<SelectListItem> GetDocumentTypes()
{
var items = new List<SelectListItem>
{
new SelectListItem
{Text = @"Text #1", Value = "1"},
new SelectListItem
{Text = @"Text #2", Value = "2"},
};
return items;
}
表单发回时我有一个控制器操作:
[HttpPost]
public void UploadDocument(DocumentModel model)
{
if (ModelState.IsValid)
{
// I want to get the text from the dropdown
}
}
如何从下拉列表中获取文字?感谢
答案 0 :(得分:19)
使用默认模型绑定可能无法轻松获得此功能。你需要这样一个小的解决方法。
1)向模型/ viewmodel添加新属性以存储所选文本
public class DocumentModel
{
public int TypeID { get; set; }
public List<SelectListItem> DocumentTypes { get; set; }
public string SelctedType { set;get;}
}
2)使用Html.HiddenFor
Helper方法在此属性的表单中创建隐藏变量
@Html.HiddenFor(x => x.SelctedType)
3)使用小javascript覆盖提交!即;当用户提交表单时,从下拉列表中获取所选文本,并将该值设置为隐藏字段的值。
$(function () {
$("form").submit(function(){
var selTypeText= $("#TypeID option:selected").text();
$("#SelctedType").val(selTypeText);
});
});
现在,在您的HTTPPost
操作方法中,这将在SelectedType
属性中提供。
[HttpPost]
public void UploadDocument(DocumentModel model)
{
if(ModelState.IsValid)
{
string thatValue=model.SelectedType;
}
}
答案 1 :(得分:2)
如果您要做的是检索所选项目,那么这可以完成工作:
var selecteItem = model.DocumentTypes.Where(item=>item.Selected).FirstOrDefault();
干杯!
答案 2 :(得分:1)
在你的模型上我会有另一个字符串 -
public string Selected{ get; set; }
然后在你看来:
@Html.DropDownListFor(model => model.Selected, new SelectList(Model.DocumentTypes, "Value", "Text"))
答案 3 :(得分:1)
我偶然发现,试图找到从SelectList中获取文本值的方法,以DropDownList以外的格式显示它(我重复使用我的编辑ViewModel,因为它具有我需要的所有数据)< / p>
var csrf = Cookies.get('truelogokoption');
$.ajax({
url : baseURL +"checkout/hasilFilter",
type : "GET",
data : {destination: x, berat: y, courier: z} + "&starssecure=" + csrf,
success: function (ajaxData){
//$('#tombol_export').show();
//$('#hasilReport').show();
$("#hasil").html(ajaxData);
}
});