我有一个 javascript 可以更改下拉列表中的值,当我保存表单时,无法在服务器端捕获该值。
按照下面的一些代码:
<div class="editor-field">
@Html.DropDownListFor(model => model.CategoriaId,
Model.Categorias
.Where(c => c.Id != Model.ContentId)
.Select(c => new SelectListItem {
Selected = c.Id == Model.CategoriaId,
Text = c.Type + " - " +c.Name,
Value = c.Id.ToString()
} ),
"Selecione uma Categoria")
@Html.Hidden("hdnValue", Model.hndCategoriaId) // my hidden value
</div>
更改下拉列表和隐藏值的 Javascript
function change(item) {
var valueArtigo;
var ddl = document.getElementById('Categoria_CategoriaId');
for (i = 0; i < ddl.options.length; i++) {
if (ddl.options[i].text.toUpperCase().indexOf("ARTIGOS") != -1)
valueArtigo = ddl.options[i].value;
}
document.getElementById("Categoria_CategoriaId").value = valueArtigo;
document.getElementById("Categoria_hdnValue").value = valueArtigo;
}
回到服务器端,我正在尝试将值保存在数据库中。
public void UpdateCategoriaForContentItem(ContentItem item, EditCategoriaViewModel model)
{
if ((model.CategoriaId != null)||(model.hndCategoriaId != null)) // both are null
{...}
}
谢谢,