嵌套的json阅读

时间:2016-04-10 13:48:35

标签: javascript json ajax

我有一个问题,请阅读以下json。

{
    "Message":"The request is invalid.",
    "ModelState":{
        "model.ConfirmPassword":["The password and confirmation password do not match.","The password and confirmation password do not match."]
    }
}

我正在尝试以下方法(结果不是空的并且具有所有已知值)

function(result)
        {
        var test=result.responseText;
        var test1=test.Message;
        var test2=test[0];
        var test3=test["Message"];      
        }

第一个测试包含所有json文本,但我只需要Message和更高版本的其他文本 请帮忙,因为我不知道我读错了信息

0 个答案:

没有答案