admin管理员组文章数量:1338762
I am receiving a JSON object from a http call and I am trying to extract values from it. JSON object contains:
data:{"userid":"007", "role":"spy"}
I use the following code to assign role property to another variable followed by some console log checks:
currentUserRole = data.role;
console.log("type of data: "+typeof(data));
console.log("data: "+JSON.stringify(data));
console.log("user role: "+currentUserRole);
The logs produce:
type of data: object
data: [{"userid":"007", "role":"spy"}]
user role: undefined
Also I tried another method of assignment:
currentUserRole = data['role'];
But currentUserRole remains undefined. How can I set a property of a JSON object to a variable?
I am receiving a JSON object from a http call and I am trying to extract values from it. JSON object contains:
data:{"userid":"007", "role":"spy"}
I use the following code to assign role property to another variable followed by some console log checks:
currentUserRole = data.role;
console.log("type of data: "+typeof(data));
console.log("data: "+JSON.stringify(data));
console.log("user role: "+currentUserRole);
The logs produce:
type of data: object
data: [{"userid":"007", "role":"spy"}]
user role: undefined
Also I tried another method of assignment:
currentUserRole = data['role'];
But currentUserRole remains undefined. How can I set a property of a JSON object to a variable?
Share Improve this question asked May 7, 2014 at 2:41 pbdpbd 4233 gold badges9 silver badges19 bronze badges 5- possible duplicate of Access / process (nested) objects, arrays or JSON – Felix Kling Commented May 7, 2014 at 2:44
-
1
JSON.stringify(data)
clearly shows thatdata
is an array with one element, an object. – Felix Kling Commented May 7, 2014 at 2:44 - 1 FYI: JSON is a string. You can't set properties on it. This doesn't have anything to do with JSON. – Hamish Commented May 7, 2014 at 2:45
- 1 ^ There's no such thing as a "JSON Object" – Felix Kling Commented May 7, 2014 at 2:46
- 1 @FelixKling: +1 on the JSON object article – pbd Commented May 7, 2014 at 2:50
2 Answers
Reset to default 15According to the second line of your log (the call to JSON.stringify()
), your data
is actually an array of objects:
[{"userid":"007", "role":"spy"}]
If it was an object as you are expecting, it would look like this:
{"userid":"007", "role":"spy"}
(the difference is subtle, but notice the missing square brackets)
Try this:
currentUserRole = data[0].role;
Obviously in production-ready code, you probably need to do some extra sanity checking to ensure that data
is in fact an array containing at least one element.
It is a list. Try data[0].role
本文标签: javascriptJSON object returns undefined valueStack Overflow
版权声明:本文标题:javascript - JSON object returns undefined value - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743558550a2502662.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论