我只是使用.Net构建一个webapi。我在post方法中有一个Car Model,其中一个字段有Required属性和错误消息类型。问题是,当我没有在指定字段中输入任何内容时,我的消息没有显示,我只得到一条消息,如空字符串(“”)。此外,如果我有一个类型为int的字段,并且我没有在该字段中输入任何内容,则模型状态无效。如何跳过转换错误,如果我没有在必填字段中输入任何内容,如何获得正确的错误消息?提前谢谢。
这是我的代码:
我的模特:
getCountry()
控制器:
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方法:
[ValidateModelAttribute]
public IHttpActionResult Post([FromBody]Car car)
{
}
答案 0 :(得分:1)
我找到了答案。它不是最好的,但如果你在属性上使用[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);
}
}
}
所需的属性不会抛出任何异常,只会出现错误消息,因此您可以对异常进行过滤。