我有一个问题,请阅读以下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和更高版本的其他文本 请帮忙,因为我不知道我读错了信息