我这里有一个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)
什么都没显示?我需要
我在做什么错了?