admin管理员组文章数量:1340649
I want to convert a JSON string into a set of array containing the values from the JSON. after json.stringify(jsonmybe)
and alert it display [{"role":"noi_user"},{"role":"bert_user"}]
(which i saw as a JSON). I want to get the noi_user
and bert_user
and set them into a javascript array. something like ['noi_user','bert_user']
with quotes in each value.
I did the var stringy = json.parse()
and the alert showing [object Object]
. and further add this lines
for (var i = 0; i < stringy.length; i++) {
arr.push(stringy[i]['role']);}
and the arr
I get was a value with ma when in alert but the ma missing as i display them in the text field and it bees a long string like noi_userbert_user
What I really want is from [{"role":"noi_user"},{"role":"bert_user"}]
to ['noi_user','bert_user']
I want to convert a JSON string into a set of array containing the values from the JSON. after json.stringify(jsonmybe)
and alert it display [{"role":"noi_user"},{"role":"bert_user"}]
(which i saw as a JSON). I want to get the noi_user
and bert_user
and set them into a javascript array. something like ['noi_user','bert_user']
with quotes in each value.
I did the var stringy = json.parse()
and the alert showing [object Object]
. and further add this lines
for (var i = 0; i < stringy.length; i++) {
arr.push(stringy[i]['role']);}
and the arr
I get was a value with ma when in alert but the ma missing as i display them in the text field and it bees a long string like noi_userbert_user
What I really want is from [{"role":"noi_user"},{"role":"bert_user"}]
to ['noi_user','bert_user']
-
as an FYI the quote type (
'
and"
are identical in JS) are irrelevant – Liam Commented Jul 19, 2019 at 7:30 -
If you want JSON (which has different rules about quotes) then
['noi_user','bert_user']
is invalid JSON. See jsonlint.. Be wary of using JSON and JS objects interchangeably, they are not the same thing and have subtly different syntax rules. – Liam Commented Jul 19, 2019 at 7:32 - Possible duplicate of From an array of objects, extract value of a property as array – adiga Commented Jul 19, 2019 at 7:41
4 Answers
Reset to default 8Use JSON.parse and then reduce to get what you want,
var s = `[{"role":"noi_user"},{"role":"bert_user"}]`
var arr = []
try {
arr = JSON.parse(s).reduce((acc, val)=>[...acc, val.role], [])
} catch (e){
console.log("Invalid json")
}
console.log(arr)
Is this what you are loking for ? You can map on your array and just extract the role
attribute of each datum.
const jsonString = ...
const data = JSON.parse(jsonString).map(data => data.role);
console.log(JSON.stringify(data, null, 2));
JSON uses double quotes to delimit strings and field names.
So you have a JSON string like
'[{"role":"noi_user"},{"role":"bert_user"}]'
You want to convert it to an object, then extract values of "role" fields of each element, put them all into an array.
Your example json string contains an array of user objects within "role" fields. Following code takes this list, loops through each user object and puts role's of each object into a separate array roleList.
var jsonStr = '[{"role":"noi_user"},{"role":"bert_user"}]';
var userObjList = JSON.parse(jsonStr);
var roleList = [];
userObjList.forEach(userObj => {
roleList.push(userObj.role);
});
console.log(roleList);
You could make a custom function to produce a sort of array_values in PHP but an indented and 2D level like so:
function array_values_indented (input) {
var tmpArr = []
for (key in input) {
tmpArr.push(input[key]['role']);
}
return tmpArr
}
var object = JSON.parse('[{"role":"noi_user"},{"role":"bert_user"}]');
var result = array_values_indented(object);
console.log(result);
本文标签: Converting JSON value into JavaScript arrayStack Overflow
版权声明:本文标题:Converting JSON value into JavaScript array - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743645881a2515499.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论