asp.net-mvc – Json返回时如何读取modelstate错误?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – Json返回时如何读取modelstate错误?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何显示 JSON返回的ModelState错误

我想做这样的事情:

if (!Validatelogon(Name,currentPassword))
    {
        ModelState.AddModelError("_FORM","Username or password is incorrect.");

        //Return a json object to the javascript
        return Json(new { ModelState });
    }

在查看ModelState错误显示它们时,我的代码必须是什么?

我的实际代码在视图中读取JSON值如下:

function createCategoryComplete(e) { 
    var obj = e.get_object(); 
    alert(obj.Values); 
}

解决方法

如果您要返回JSON,则无法使用ModelState.视图需要的一切都应包含在JSON字符串中.因此,不要将错误添加到ModelState,您可以将其添加到要序列化的模型中:
public ActionResult Index()
{
    return Json(new 
    {
        errorControl = "_FORM",errorMessage = "Username or password is incorrect.",someOtherProperty = "some other value"
    });
}
原文链接:/aspnet/249944.html

猜你在找的asp.Net相关文章