使用javascript验证json字符串

时间:2010-08-16 06:42:07

标签: javascript string json if-statement conditional

我有这个json字符串{"Table" : [{"subject" : "No Records are there to Display"}]}。 如果我收到此数据,我想提醒NO Records Found。任何建议。

注意:我的关键字段可能会有所不同(即)此处为Subject,有些更像DetailsDescription

1 个答案:

答案 0 :(得分:1)

我使用jquery或任何其他库将JSON字符串转换为JS对象:

var obj = jQuery.parseJSON('{"Table" : [{"subject" : "No Records are there to Display"}]}');
if (obj.Table[0].subject === "No Records are there to Display") {
    alert("NO Records Found");
}