Angular 4 - 通过Key从JSON获取价值

时间:2018-02-01 11:59:49

标签: javascript angular

我想通过这个json的键来获取值。 关键是描述,我想在我的console.log中,我不知道如何获得这个值,过滤之前工作正常。

{
    "id": "149",
    "description": "Try"
}

谢谢!

2 个答案:

答案 0 :(得分:1)

首先你需要使用JSON.parse解析它。然后使用。或[]你可以访问。例如: -

var a = '{
    "id": "149",
    "description": "Try"
}'

b = JSON.parse(a)

b ['说明']或b.description 您可以参考更多参考资料here

答案 1 :(得分:0)

const dummy = {
  id : '1',
  description : 'Wow awesome'
};

console.log(dummy.description);

//-------------------------------------

const descData = dummy.description;

console.log(descData);

variableName['description']variableName.description