从修改后的字符串中提取对象

时间:2015-02-04 05:03:55

标签: javascript

我通过名称响应获取一个对象,它具有一个名称为attribute_dim的属性。

悬停在

response.attribute_dim

我看到了

"{"Coupon Circle":"coupon_circle"}"

在chrome开发人员工具中。(见图片)

enter image description here

在下面做

JSON.parse(response.attributes_dim);

我得到了

Uncaught SyntaxError: Unexpected identifier

我该怎样做才能让对象脱离它?

2 个答案:

答案 0 :(得分:0)

您的回复attributes_dim属性不是attributes

所以你需要以这种方式调用JSON解析器:

JSON.parse(response.attributes_dim);

答案 1 :(得分:0)

应该是你最后的错字。 使用:

JSON.parse(response.attributes_dim);