我正在为某个viewmodel属性开发客户端和服务器端验证.
在.cshtml文件中,我把这个:
@Html.DropDownListFor(model => model.EntityType.ParentId,Model.ParentTypeList,"") @Html.ValidationMessageFor(model => model.EntityType.ParentId)
在控制器中进行业务验证
catch (BusinessException e) { ModelState.AddModelError("EntityType.ParentId",Messages.CircularReference); }
以上工作如预期:如果捕获到异常,该消息将出现在下拉列表旁边.
但是,我觉得这样做不是很优雅.在cshtml中,我使用一种方法生成有关验证的所有必需信息.在控制器中,我必须知道确切的Key字符串并使用它.
是不是有更好的方法呢?
解决方法
您可以编写一个扩展方法,该方法将为键而不是字符串使用lambda表达式:
public static class ModelStateExtensions { public static void AddModelError<TModel,TProperty>( this ModelStateDictionary modelState,Expression<Func<TModel,TProperty>> ex,string message ) { var key = ExpressionHelper.GetExpressionText(ex); modelState.AddModelError(key,message); } }
然后使用这种方法:
catch (BusinessException e) { ModelState.AddModelError<Myviewmodel,int>( x => x.EntityType.ParentId,Messages.CircularReference ); }