我通过名称响应获取一个对象,它具有一个按名称属性的属性。
悬停在
上response.attribute
我看到了
"{"Coupon Circle":"coupon_circle"}"
在chrome开发人员工具中。(见图片)
在下面做
JSON.parse(response.attributes);
我得到了
Uncaught SyntaxError: Unexpected identifier
我该怎样做才能让对象脱离它?
答案 0 :(得分:0)
使用JSON.parse()
。
该字符串是一个json对象,可以使用JavaScripts本机JSON解析器转换为对象。将字符串传递给JSON.parse()
,它将为您提供对象。