jquery – getJSON到console.log()输出json结构

前端之家收集整理的这篇文章主要介绍了jquery – getJSON到console.log()输出json结构前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下代码获取json数据:
$.getJSON( "assessments",function( assessments ) {
    console.log(assessments);
        });

我完全获取所有的数据,但控制台输出

[Object,Object,Object]

我想输出JSON结构中的值,如下所示:

[
{
    "id": 1,"person": {
        "personId": "person1","firstName": "Pactric"
    },"manager": {
        "managerId": "manager1"
    },"state": {
        "stateId": 1,"description": null
    },"comments": null
}
]

如何console.log()使这些数据完全按照上面的JSON结构显示
我使用$ .getJSON NOT $ .ajax为这个应用程序。

解决方法

试试
console.log(JSON.stringify(assessments));
原文链接:https://www.f2er.com/jquery/184929.html

猜你在找的jQuery相关文章