Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
135 views
in Technique[技术] by (71.8m points)

reactjs - How to extract only values from array of objects and put it to an array using react and javascript?

i have an array of objects like below

const SelectedOptions = [
    {
        label: 'label1',
        value: '1',
    },
    {
        label: 'label2',
        value: '2',
    }
];

I use this selectedOption array in the onChange method of select menu like below

const App = () => {
    return (
        <Select
            options={options}
            onChange((selectedOptions) => {
                form.setFieldValue('optionsChosen', selectedOptions);
            });
        />
    );
}
         

Now the problem with above onChange method is that, i want to set field OptionsChosen to an array of values only.

so in the onchange method i want to map through selectedOptions and extract only values field and put it to optionsChosen field.

so the expected array to optionsChosen field is like below,

["1", "2"];

how can i do it. could someone help me with this. thanks.

question from:https://stackoverflow.com/questions/65903319/how-to-extract-only-values-from-array-of-objects-and-put-it-to-an-array-using-re

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You need to use map to convert an array of objects into an array of values

const SelectedOptions = [
{
    label: 'label1',
    value: '1',
},
{
    label: 'label2',
    value: '2',
}
];

result = SelectedOptions.map(option => option.value);

console.log(result);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...