下面是我的json响应

{
  "head": null,
  "body": {
    "8431073": "CN0028-00"
  },
  "responseTime": null,
  "leftPanel": null
}


我喜欢从身体中获得关键和价值。以下是我想使用的键和值的ajax调用。但返回的空值。

$.ajax({

  url: "ulhcircuit.json",
  method: "GET",
  contentType: "application/json; charset=utf-8",
  success: function(data) {
    result = data.body;
    gethtmlvalues(result);
    $("#dialog_loading").hide();
  },
  fail: function(xhr, ajaxOptions, thrownError) {
    console.log(xhr);
    $("#dialog_loading").hide();
  }
});


function gethtmlvalues(result) {
    var circuitList = result;
    var cktInstId = "";
    var cktName = "";
    if (circuitList != null) {

      if (circuitList.length > 0) {
        $.each(circuitList, function(key, value) {

          cktInstId = key; // returns empty values
          cktName = value; // returns empty values
        });
      }
    }
}


我想将cktInstId作为8431073和cktName作为CN0028-00

请帮助我。谢谢

最佳答案

当您的响应输入gethtmlvalues时,您将传递data.body,它基于您提供的JSON如下所示:

{ "8431073": "CN0028-00" }


这是一个普通的JS对象,而不是列表,并且length属性的存在并不意味着它包含的项目数量。这意味着您不需要长度检查(您正在比较undefined > 0)。您也不需要(错误地)命名为额外变量circuitList,只需使用result

function gethtmlvalues(result){
  if(result != null){
      $.each(result,function(key, value){
          console.log(key, value); // this will print your key value pair
      });
  }
}

10-07 14:34