ModelState验证
我只是使用.Net构建webapi。 我在Post方法中有一个Car Model,并且其中一个字段具有Required属性和一个错误消息类型。 问题是,当我没有在指定的字段中输入任何内容时,我的消息没有显示,我只收到一条消息,如空字符串(“”)。 另外,如果我有一个int类型的字段,并且我没有在该字段中输入任何内容,则模型状态无效。 如何避免转换错误?如果我不在必填字段中输入任何内容,如何获得正确的错误消息? 提前致谢。
这是我的代码:
我的模特:
public class Car
{
public Guid Id { get; set; }
public bool IsActive { get; set; }
[Required(ErrorMessageResourceName = "RequiredName", ErrorMessageResourceType = typeof(Car_Resources))]
public string Name { get; set; }
[Required(ErrorMessageResourceName = "RequiredNumber", ErrorMessageResourceType = typeof(Car_Resources))]
public string Number { get; set; }
}
控制器:
[ValidateModelAttribute]
public IHttpActionResult Post([FromBody]Car car)
{
}
ValidateModelAttribute方法:
public override void OnActionExecuting(HttpActionContext actionContext)
{
if (!actionContext.ModelState.IsValid)
{
var errors = new List<string>();
foreach (var state in actionContext.ModelState)
{
foreach (var error in state.Value.Errors)
{
errors.Add(error.ErrorMessage);
}
}
actionContext.Response = actionContext.Request.CreateResponse(HttpStatusCode.BadRequest, errors);
}
}
我找到了答案。 这不是最好的,但如果你在属性上使用[Required]
属性,那么你可以使用这个:
public override void OnActionExecuting(HttpActionContext actionContext)
{
if (!actionContext.ModelState.IsValid)
{
var errors = new List<string>();
foreach (var state in actionContext.ModelState)
{
foreach (var error in state.Value.Errors)
{
if (error.Exception == null)
{
errors.Add(error.ErrorMessage);
}
}
}
if (errors.Count > 0)
{
actionContext.Response = actionContext.Request.CreateResponse(HttpStatusCode.BadRequest, errors);
}
}
}
所需的属性不会抛出任何异常,只会显示错误消息,因此您可以对异常进行过滤。
链接地址: http://www.djcxy.com/p/67993.html下一篇: displaying invalid ModelState in Web Api via jquery ajax