在JavaScript中访问JSON对象/数组

时间:2018-07-19 15:41:27

标签: javascript json

我这里有一个Rest API,我试图通过json.stringify访问它。

这是我的代码:

  var jsonObj=""
  $.getJSON('http://localhost:9999/countcarbyregion', function(results) {
    jsonObj = JSON.stringify(results);
  });

  console.log(jsonObj);

JSON如下所示:

[{
    "_id":"Coimbatore",
    "countofcars":6
}, {
    "_id":"Delhi",
    "countofcars":4
}, {
    "_id":"Mumbai",
    "countofcars":68
}, {
    "_id":"Ahmedabad",
    "countofcars":4
}, {
     "_id":"Noida",
     "countofcars":2
}, {
     "_id":"Thane",
     "countofcars":2
}, {
     "_id":"Gurgaon",
     "countofcars":4
}]

为什么我console.log(jsonObj)什么都没显示?我需要

外的jsonOject

我在做什么错了?

0 个答案:

没有答案