如何在 javascript 中打印 json 的标题?
how to print heading of json in javascript?
我知道这是一个非常简单的问题,但我是 json 的初学者。谁能回答如何在控制台中打印标题。
这是我的代码:
var jsonstr = '{"profile":{"name" : "raj","age":"35"}}' ;
var json = JSON.parse(jsonstr);
// here I want to print console.log("profile")
现在我想在控制台中打印“配置文件”。
您可以尝试 Object.keys()
索引 0:
var jsonstr = '{"profile":{"name" : "raj","age":"35"}}' ;
var json = JSON.parse(jsonstr);
console.log(Object.keys(json)[0]);
我知道这是一个非常简单的问题,但我是 json 的初学者。谁能回答如何在控制台中打印标题。
这是我的代码:
var jsonstr = '{"profile":{"name" : "raj","age":"35"}}' ;
var json = JSON.parse(jsonstr);
// here I want to print console.log("profile")
现在我想在控制台中打印“配置文件”。
您可以尝试 Object.keys()
索引 0:
var jsonstr = '{"profile":{"name" : "raj","age":"35"}}' ;
var json = JSON.parse(jsonstr);
console.log(Object.keys(json)[0]);