无法使用“-”破折号访问JSON属性
当字符串具有破折号时,我无法从json对象中检索值:
{"profile-id":1234, "user_id":6789}
如果我试图引用被解析的jsonObj.profile-id它回来了ReferenceError: "id" is not defined但是jsonobj.user_id将返回6789
jsonObj.profile-id
ReferenceError: "id" is not defined
我没有办法修改外部API调用返回的值,并试图解析返回的字符串以删除破折号,这样也会破坏URL等等。帮助?
www说
HUH函数
相关分类