My array:
[
{
name: 'test1',
state: 'OK',
status: true,
pending: 33,
approved: 0,
active: 0,
inactive: 33
},
{
name: 'test3',
state: 'OK',
status: true,
pending: 33,
approved: 0,
active: 0,
inactive: 33
},
{
name: 'test4',
state: 'OK',
status: true
}
]
If the "pending", "approved", "active", "inactive" key not exists in object, i need output like this:
Expected output:
[
{
name: 'test1',
state: 'OK',
status: true,
pending: 33,
approved: 0,
active: 0,
inactive: 33
},
{
name: 'test3',
state: 'OK',
status: true,
pending: 33,
approved: 0,
active: 0,
inactive: 33
},
{
name: 'test4',
state: 'OK',
status: true,
pending: 0,
approved: 0,
active: 0,
inactive: 0
}
]
How to do this?
I tried with map but i dont know how to set condition.
I want to set the values into zero.
My array:
[
{
name: 'test1',
state: 'OK',
status: true,
pending: 33,
approved: 0,
active: 0,
inactive: 33
},
{
name: 'test3',
state: 'OK',
status: true,
pending: 33,
approved: 0,
active: 0,
inactive: 33
},
{
name: 'test4',
state: 'OK',
status: true
}
]
If the "pending", "approved", "active", "inactive" key not exists in object, i need output like this:
Expected output:
[
{
name: 'test1',
state: 'OK',
status: true,
pending: 33,
approved: 0,
active: 0,
inactive: 33
},
{
name: 'test3',
state: 'OK',
status: true,
pending: 33,
approved: 0,
active: 0,
inactive: 33
},
{
name: 'test4',
state: 'OK',
status: true,
pending: 0,
approved: 0,
active: 0,
inactive: 0
}
]
How to do this?
I tried with map but i dont know how to set condition.
I want to set the values into zero.
Share Improve this question asked Sep 1, 2018 at 7:10 SameerSameer 3,5465 gold badges27 silver badges55 bronze badges 3- can you include your attempt(s) in your question please? Thank you. – NewToJS Commented Sep 1, 2018 at 7:12
- ok wait........ – Sameer Commented Sep 1, 2018 at 7:14
- jsbin./yimebifoci/edit?js,output – Sameer Commented Sep 1, 2018 at 7:17
3 Answers
Reset to default 3You can use Array.map()
and use an array of properties, iterate over the array of properties and check for each object if that property is present in the object or not, if it is not present than simply add the property and assign it value as 0.
let arr = [ { name: 'test1', state: 'OK', status: true, pending: 33, approved: 0, active: 0, inactive: 33 }, { name: 'test3', state: 'OK', status: true, pending: 33, approved: 0, active: 0, inactive: 33 }, { name: 'test4', state: 'OK', status: true } ];
let props = ['active','inactive', 'approved', 'pending'];
let result = arr.map(a =>{
props.forEach(prop=> a[prop] = a[prop] || 0);
return a;
});
console.log(result);
You can use .forEach
to apply your condition to each object.
arr = [
{
name: 'test1',
state: 'OK',
status: true,
pending: 33,
approved: 0,
active: 0,
inactive: 33
},
{
name: 'test3',
state: 'OK',
status: true,
pending: 33,
approved: 0,
active: 0,
inactive: 33
},
{
name: 'test4',
state: 'OK',
status: true
}
]
arr.forEach(obj => {for (let p of ['pending', 'approved', 'active', 'inactive']){
if (!obj.hasOwnProperty(p)){
obj[p] = 0;
}
}});
console.log(arr);
- Create an object having properties with their default values.
- Use
.map()
to iterate over objects of the given array by passing a callback. - Use
Object.assign()
method to create a close of the current object by passing an empty object, default object and current object as arguments. First defaults values will be copied into empty object and thenObject.assign()
will copy each property from the current object in the cloned effectively overriding the default values.
Below is a demo:
let data = [
{name: 'test1',state:'OK',status:true,pending: 33,approved: 0,active: 0,inactive: 33},
{name: 'test3',state:'OK',status:true,pending: 33,approved: 0,active: 0,inactive: 33},
{name: 'test4',state:'OK',status:true}
];
let defaults = {
pending: 0,
approved: 0,
inactive: 0,
active: 0
};
let result = data.map(o => Object.assign({}, defaults, o));
console.log(result);
.as-console-wrapper { max-height: 100% !important; top: 0; }
Resources:
Array.prototype.map()
Object.assign()
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745113118a4611963.html
评论列表(0条)