我在我的项目中使用MVC 3,我看到了一种非常奇怪的行为。
我正在尝试为我的模型上的特定值创建隐藏字段,问题是由于某种原因,字段上设置的值与模型中的值不对应。
e.g。
我有这段代码,就像测试一样:
<%:Html.Hidden("Step2", Model.Step) %>
<%:Html.HiddenFor(m => m.Step) %>
我认为两个隐藏字段都具有相同的值。 我所做的是,第一次显示View时将值设置为1,然后在提交后我将Model字段的值增加1。
因此,第一次渲染页面时,两个控件的值都是1,但第二次渲染的值是:
<input id="Step2" name="Step2" type="hidden" value="2" />
<input id="Step" name="Step" type="hidden" value="1" />
如您所见,第一个值是正确的,但第二个值似乎与我第一次显示视图时相同。
我错过了什么? * For Html助手是否以某种方式缓存值?如果是这样,我该如何禁用此缓存?。
感谢您的帮助。
答案 0 :(得分:182)
这是正常的,它是HTML帮助程序的工作方式。他们首先使用POST请求的值,然后使用模型中的值。这意味着即使您在控制器操作中修改模型的值,如果POST请求中存在相同的变量,您的修改也将被忽略,并且将使用POSTed值。
一种可能的解决方法是从尝试修改值的控制器操作中的模型状态中删除此值:
// remove the Step variable from the model state
// if you want the changes in the model to be
// taken into account
ModelState.Remove("Step");
model.Step = 2;
另一种可能性是编写一个自定义HTML帮助程序,它将始终使用模型的值并忽略POST值。
还有另一种可能性:
<input type="hidden" name="Step" value="<%: Model.Step %>" />
答案 1 :(得分:16)
我在编写向导时遇到了同样的问题,该向导在每一步都显示了较大模型的不同部分 “第1步”中的数据和/或错误将与“第2步”等混淆,直到我终于意识到ModelState是'责备'。
这是我的简单解决方案:
if (oldPageIndex != newPageIndex)
{
ModelState.Clear(); // <-- solution
}
return View(model[newPageIndex]);
答案 2 :(得分:1)
此代码不起作用
// remove the Step variable from the model state
// if you want the changes in the model to be
// taken into account
ModelState.Remove("Step");
model.Step = 2;
...因为HiddenFor always(!)从ModelState读取而不是模型本身。如果它没有找到“Step”键,它将产生该变量类型的默认值,在这种情况下为0
这是解决方案。我是为自己写的,但不介意分享它,因为我看到很多人都在为这个顽皮的HiddenFor帮手挣扎。
public static class CustomExtensions
{
public static MvcHtmlString HiddenFor2<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression)
{
ReplacePropertyState(htmlHelper, expression);
return htmlHelper.HiddenFor(expression);
}
public static MvcHtmlString HiddenFor2<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, object htmlAttributes)
{
ReplacePropertyState(htmlHelper, expression);
return htmlHelper.HiddenFor(expression, htmlAttributes);
}
public static MvcHtmlString HiddenFor2<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IDictionary<string, object> htmlAttributes)
{
ReplacePropertyState(htmlHelper, expression);
return htmlHelper.HiddenFor(expression, htmlAttributes);
}
private static void ReplacePropertyState<TModel, TProperty>(HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression)
{
string text = ExpressionHelper.GetExpressionText(expression);
string fullName = htmlHelper.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName(text);
ModelStateDictionary modelState = htmlHelper.ViewContext.ViewData.ModelState;
ModelMetadata metadata = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData);
if (modelState.ContainsKey(fullName))
{
ValueProviderResult currentValue = modelState[fullName].Value;
modelState[fullName].Value = new ValueProviderResult(metadata.Model, Convert.ToString(metadata.Model), currentValue.Culture);
}
else
{
modelState[fullName] = new ModelState
{
Value = new ValueProviderResult(metadata.Model, Convert.ToString(metadata.Model), CultureInfo.CurrentUICulture)
};
}
}
}
然后你就像往常一样在你看来使用它:
@Html.HiddenFor2(m => m.Id)
值得一提的是它也适用于收藏品。
答案 3 :(得分:0)
我对于我认为的相同情况太过挣扎,我在调用之间使用相同的模型状态,并且当我在后端更改模型属性时。虽然,对我来说无关紧要,如果我使用textboxfor或hiddenfor。
我只是通过使用页面脚本将模型值存储为js变量来绕过这种情况,因为我在开始时需要隐藏字段用于此目的。
不确定这是否有帮助但只考虑..