I have a POST controller action that returns a partial view. Everything seems really easy. but. I load it using $.ajax()
, setting type as html
. But when my model validation fails I thought I should just throw an error with model state errors. But my reply always returns 500 Server error.
How can I report back model state errors without returning Json with whatever result. I would still like to return partial view that I can directly append to some HTML element.
I would also like to avoid returning error partial view. This would look like a success on the client. Having the client parse the result to see whether it's an actual success is prone to errors. Designers may change the partial view output and this alone would break the functionality. So I want to throw an exception, but with the correct error message returned to the ajax client.
I had to write two separate parts that automagically work exactly as intended.
So it should return a partial view when controller action process succeeds and it should throw an error with some failure details when things are not ok so things on the client side would distinguish success as well as failure instead of always handling success.
There are two major parts that are used to achieve this:
On to details then...
External link: All this information (detailed explanation as well as all the code) is also available on my blog. Latest code updates will always be published there.
This class provides two things
This class is later used in my custom error filter.
public class ModelStateException : Exception { public Dictionary<string, string> Errors { get; private set; } public ModelStateDictionary ModelState { get; private set; } public override string Message { get { if (this.Errors.Count > 0) { return this.Errors.First().Value; } return null; } } private ModelStateException() { this.Errors = new Dictionary<string, string>(); } public ModelStateException(ModelStateDictionary modelState) : this() { this.ModelState = modelState; if (!modelState.IsValid) { foreach (KeyValuePair<string, ModelState> state in modelState) { if (state.Value.Errors.Count > 0) { this.Errors.Add(state.Key, state.Value.Errors[0].ErrorMessage); } } } } }
This attribute helps returning errors to the client in terms of HTTP error codes when there are any model state errors.
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)] public class HandleModelStateExceptionAttribute : FilterAttribute, IExceptionFilter { public void OnException(ExceptionContext filterContext) { if (filterContext == null) { throw new ArgumentNullException("filterContext"); } if (filterContext.Exception != null && typeof(ModelStateException).IsInstanceOfType(filterContext.Exception) && !filterContext.ExceptionHandled) { filterContext.ExceptionHandled = true; filterContext.HttpContext.Response.Clear(); filterContext.HttpContext.Response.ContentEncoding = Encoding.UTF8; filterContext.HttpContext.Response.HeaderEncoding = Encoding.UTF8; filterContext.HttpContext.Response.TrySkipIisCustomErrors = true; filterContext.HttpContext.Response.StatusCode = 400; filterContext.HttpContext.Response.StatusDescription = (filterContext.Exception as ModelStateException).Message; } } }
After that, I simply decorated my controller action with my attribute and voila. I did get errors on the client with code 400 and correct information that I set in my filter. This information is then displayed to the user (when it's related to model state errors it displays information which form fields user should amend to make the form valid).
[HandleModelStateException] public ActionResult AddComment(MyModel data) { // check if state is valid if (!this.ModelState.IsValid) { throw new ModelStateException(this.ModelState); } // get data from store return PartialView("Comment", /* store data */ ); }
This makes my code reusable with any model state errors and those will get sent to the client as they should.
But there's still one issue related to this code. When my error action filter sets StatusDescription
and that string contains some special characters like Č, I get rubbish on the client. Unless I use IE (I'm using version 8). FF and CH display rubbish. That's why I set encodings but it doesn't work. If anyone has a workaround for this particularity I'd be more than glad to listen in.
If I return error message in content itself, everything's fine. Encoding is correct and I can display whatever I want.
Try this.
public ActionResult DoAjaxAction(Entity entity)
{
if(ModelState.IsValid)
{
return PartialView("Valid_View", entity);
}
else
{
return PartialView("Invalid_View", entity);
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With