从对象中获取对象

时间:2015-02-02 12:11:34

标签: javascript

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

悬停在

response.attribute

我看到了

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

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

enter image description here

在下面做

JSON.parse(response.attributes);

我得到了

Uncaught SyntaxError: Unexpected identifier

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

1 个答案:

答案 0 :(得分:0)

使用JSON.parse()

该字符串是一个json对象,可以使用JavaScripts本机JSON解析器转换为对象。将字符串传递给JSON.parse(),它将为您提供对象。