简体   繁体   中英

How to remove and object property from all array object and and pass by api

在此处输入图像描述

const dd = filterdusers.map((item) => { delete item.role; return item; });

I have an array of elements with structuring like this image. So I want to remove the role property from every array element.

You could destructure the object with unwanted item and take the rest.

This approach does not mutae the original data.

const dd = filterdusers.map(({ role, ...rest }) => rest);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM