我通过名称响应获取一个对象,它具有一个名称为attribute_dim的属性。
悬停在
上response.attribute_dim
我看到了
"{"Coupon Circle":"coupon_circle"}"
在chrome开发人员工具中。(见图片)
在下面做
JSON.parse(response.attributes_dim);
我得到了
Uncaught SyntaxError: Unexpected identifier
我该怎样做才能让对象脱离它?
答案 0 :(得分:0)
您的回复attributes_dim
属性不是attributes
。
所以你需要以这种方式调用JSON解析器:
JSON.parse(response.attributes_dim);
答案 1 :(得分:0)
应该是你最后的错字。 使用:
JSON.parse(response.attributes_dim);